mac 系统php环境搭建
程序员文章站
2022-07-07 21:34:50
...
1、安装nginx
#查看是否已安装nginx
brew search nginx
==> Formulae
nginx ✔
#若没装
brew install nginx
...
#等待success
nginx -V #查看配置目录
sudo nginx #启动
sudo pkill nginx #按照进程名杀死进程
2、安装php
brew install php
php --ini #查看配置文件存放路径
在这一步遇到php-redis扩展的困扰,网上找的一些教程总是运行不通,最后,这个方法可以
pecl install redis
#会打印出successful 和redis.so文件的位置,记住
vim /usr/local/etc/php/7.2/php.ini
#添加extension_dir = "/usr/local/Cellar/php/7.2.9_2/pecl/20170718"
sudo php #启动
3、mysql安装
brew install mysql
#之前装过mysql ,启动时在系统偏好设置里,用界面启动即可。
上一篇: mac上搭建vue环境