mac安装php环境

  • Post author:
  • Post category:php


安装brew

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

安装php7.1

brew install php@7.1

安装mysql5.7

brew install mysql@5.7

安装nginx

brew install nginx


启动nginx

brew services start nginx


启动PHP

brew services start php@7.1

启动mysql

brew services start mysql@5.7

/usr/local/opt/mysql@5.7/bin/mysql.server start


php一些路径

/usr/local/opt/php@7.1/bin/php

/usr/local/Cellar/php@7.1/7.1.28/bin/phpize

php-fpm配置文件 (php运行用户在这里改user和group)

/usr/local/Cellar/php@7.1/7.1.28/.bottle/etc/php/7.1/php-fpm.d/www.conf

php.ini

/usr/local/etc/php/7.1/php.ini

nginx.conf

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

my.cnf

/usr/local/etc/my.cnf



版权声明:本文为qq_22894935原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。