mac系統下git、mysql、nginx、php的環境搭建

weixin_33763244發表於2018-07-25

安裝homebrew

安裝homebrew

安裝git

官網下載安裝

安裝git戳這裡
下載完成按住control鍵再點選安裝包,出現彈窗後點選開啟。

通過homebrew安裝

brew install git

安裝mysql

brew install mysql

安裝nginx

brew install inginx
  • 一些nginx命令:
# 啟動 nginx
sudo brew services start nginx
sudo nginx 
#安裝後的nginx預設監聽的埠是80埠 http://localhost

# 關閉 nginx
sudo brew services stop nginx

# 重新載入 nginx
nginx -s reload

# 停止 nginx
nginx -s stop

# 檢視版本,以及配置檔案地址
nginx -V 

# 看版本
nginx -v 

# 重新載入配置|重啟|快速停止|安全關閉nginx
nginx -s reload|reopen|stop|quit   

# 幫助
nginx -h

# 開啟nginx之前應確保apache已經關閉
# 關閉apache
sudo apachectl -k stop

安裝php

Mac自帶

# 檢視自帶版本
php -v

相關文章