1024programmer PHP Note: MAC uses brew to configure nginx, php, mysql, phpfpm, redis

Note: MAC uses brew to configure nginx, php, mysql, phpfpm, redis

I used the built-in apache and php configuration on the mac before,it was all patchwork made by Baidu,no record. This time I changed it to nginx environment & # xff0c; write a note to record it & # xff0c; for later viewing & # xff0c; also hope to borrow flowers & offer Buddha & # xff0c; to help others. The content is all pieced together from the Internet,Thank you to all the selfless and dedicated gods on the Internet.

Install xcode-select

When installing some applications through brew, you need to use this program to compile ( If the words are not accurate, please forgive me&#xff09 ;,So in order to avoid installation failure,It is recommended to install first;

xcode-select --install

install homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent. com/Homebrew/install/master/install)"

[ The system will , add a series of files in the /usl/local/* directory]

The above information sources :

Install nginx and The configuration

command is as follows

brew install nginx

Test modification is successful

sudo nginx -t

Start

sudo nginx

Restart

sudo nginx -s reload

After installing nginx, run nginx -s reload directly, the following error will occur& #xff1a;

The reason for this error is , there is no nginx.pid file ; according to the information found on the Internet &#xff0c ;When nginx starts, it will create a file named nginx.pid in the /usr/local/var/run/ directory , when executing nginx -s stop, it will delete this file. Then execute nginx -s reload to restart , will first delete, and then create. The reason for the error here , is that the file does not exist and cannot be deleted;

Solution: Run the startup command

sudo nginx

Start automatically at boot

Method 1

Make sure the homebrew.mxcl.nginx.plist file exists

ln -sfv /usr/local/opt/nginx/homebrew.mxcl.nginx.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist

Method 2:

sudo brew services start nginx

Configure host

Modify local hosts file

sudo vim /etc/hosts

Add a 127.0.0.1 localhost pointing to , and then enter localhost:8080, in the browser to access. The following figure shows that nginx has been initially configured successfully;

The initial port of nginx is 8080;

Modify the port of nginx

vim /usr/local/etc/nginx/nginx.conf

Change the monitoring 8080 to 80 ; server_name is the host domain name &#xff0c ; This is localhost. You can add a local ip domain name pointing to , in /etc/hosts, and then add the domain name in nginx , to enter the domain name address through the browser to access ;

nginx.conf file configuration

cd /usr/ local/etc/nginx
vim nginx.conf

The modified nginx.conf code is as follows

user root owner;
worker_processes 4;error_log /usr/local/var/log/nginx/error.log;
# error_log logs/error.log notice;
#error_log logs/error.log info;pid /usr/local/var/run/nginx.pid;events {worker_connections 1024;
}http {include mime.types;default_type application/octet-stream;log_format main '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_se"hljs-literal">trueProgram/usr/local/sbin/php-fpm

where php-fpm The path of , can be viewed by whereis php-fpmfind / -name php-fpm,which php-fpm ,Must ensure that the version in the corresponding directory,consistent with the version of php-fpm -v

Configure automatic startup at startup

sudo chown messia:wheel ~/Library/LaunchAgents/org.php.php-fpm.plist
sudo chmod +x ~/Library/LaunchAgents/org .php.php-fpm.plist
launchctl load -w ~/Library/LaunchAgents/org.php.php-fpm.plist

Check whether the startup is successful

launchctl list | grep php

Install redis and php corresponding redis extensions

Use brew to install

brew install redis

Installation directory

/usr/local/bin

Check version

redis-server -v
redis-cli -v

Run redis in the background

brew services start redis

php installs redis extension

use pecl command to install ; pecl command , when using brew to install php , has been installed for us, here we can use it directly.

Let’s first enter the bin directory of php to see if the command exists , the corresponding path is as follows : cd /usr/local/Celler/php@7.1/7.1.26 7.1.26 here is the specific version number of php I installed through brew install php@7.1, You can use the ls command to check whether there is a pecl command in the folder

Mac system comes with php , You can check whether the current php version is consistent with your own installation through php -v, cd /usr/local/bin directory , view with ls -al

If it points to the directory after brew installation , you can use the following command , to re-associate softly ;

cd /usr/local/bin
ln -s ../Cellar/php@7.1/7.1.26/bin/php php
ln -s ../Cellar/php@ 7.1/7.1.26/bin/pecl pecl

Remember to exit after soft association Client terminal , and then enter , run php -v to check the version number ; modify pecl download directory, cache directory permissions , otherwise it may fail, xff1b;

sudo chown -R own account: group directory
sudo chown -R messia :wheel /private/tmp/pear/

Install the extended dependencies of redis

pecl install igbinary

Now you can install redis& #xff0c;The command is as follows :

pecl install redis

Wait quietly for the installation to complete,Confirm whether the module is installed successfully;

php -m|grep r

As shown

Confirm in the php.ini file

Determine the location of the so file

View the file

So far redis is installed

Start redis service

redis-server

Automatically start the redis command at startup

brew services start redis

Check if redis started successfully

ps -ef | grep -E 'php|nginx|redis'

Install mysql

Directly use the following command to install mysql;

brew install mysql

Set mysql password , the prerequisite is to start mysql, otherwise an error will be reported . However, no password is configured in the local development environment.

sudo mysql_secure_installation

mysql Start command

sudo mysql.server start

Start mysql at boot

sudo brew services start mysql

Restart

brew services restart mysql

phpMyAdmin related configuration

config.sample.inc.php save file config.inc.php$cfg['Servers'][$i span>]['host'] = '127.0.0.1'127.0.0.1' 39;;
$cfg['Servers'] [$i]['AllowNoPassword'] = true;

Solution , Looks like 8.0 must require a password; modify my.cnf

cd /usr/local/etc
vim my.cnf
Add a new line
default_authentication_plugin = mysql_native_password

Login to database , change password

mysql -u root -p
mysql>use mysql;
ALTER USER root@'localhost' IDENTIFIED WITH mysql_native_password BY 'your password';
mysql>FLUSH PRIVILEGES;

Laravel link database error handling

SQLSTATE[ 42000]: Syntax error or access violation: 1231 Variable 'sql_mode' can't be set to the value of 'NO_AUTO_CREATE_USER'

Modify database.php

'mysql&#39 ; => ['modes' => [& #39;ONLY_FULL_GROUP_BY','STRICT_TRANS_TABLES','NO_ZERO_IN_DATE& #39;,'NO_ZERO_DATE','ERROR_FOR_DIVISION_BY_ZERO','NO_ENGINE_SUBSTITUTION',],],

You can fix ;

Return: https://juejin.im/post/5c8fb28a6fb9a07103548318

an>

mysql start command

sudo mysql.server start

Start mysql at boot

sudo brew services start mysql

Restart

brew services restart mysql

phpMyAdmin related configuration

config.sample.inc .php save as file config.inc.php$cfg['Servers'][ $i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['AllowNoPassword&#39 ;] = true;

Solution ,Looks like 8.0 must require a password; Modify my.cnf

cd /usr/local/etc
vim my.cnf
Add a new line
default_authentication_plugin = mysql_native_password

login database &#xff0c ;Change password

mysql -u root -p
mysql>use mysql;
ALTER USER root@'localhost' IDENTIFIED WITH mysql_native_password BY 'your password';
mysql> FLUSH PRIVILEGES;

Laravel link database error handling

SQLSTATE[42000]: Syntax error or access violation: 1231 Variable 'sql_mode' can't be set to the value of 'NO_AUTO_CREATE_USER'

Modify database.php

'mysql' => ['modes' &#61 ;> ['ONLY_FULL_GROUP_BY','STRICT_TRANS_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','ERROR_FOR_DIVISION_BY_ZERO','NO_ENGINE_SUBSTITUTION',],],

You can repair ;

Transfer: https://juejin.im/post /5c8fb28a6fb9a07103548318

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/note-mac-uses-brew-to-configure-nginx-php-mysql-phpfpm-redis/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索