localhost:nginx-1.17.1 mhx$ sudo brew install nginx
2.檢視是否安裝成功
localhost:nginx-1.17.1 mhx$ nginx -v
nginx version: nginx/1.17.1
3.啟動
localhost:nginx mhx$ sudo nginx
4.檢視是否啟動成功
在瀏覽器中訪問 http://localhost:8080,如果出現nginx介面,則說明啟動成功.
備註:埠號是在配置檔案 nginx.conf 裡面配置的,預設埠是 8080 ,配置檔案的位置/usr/local/etc/nginx/nginx.conf
5.關閉
localhost:nginx mhx$ sudo nginx -s stop
localhost:nginx mhx$ sudo nginx -s reload
7.max系統區域網訪問不了問題,解決方法
1)nginx.conf最開頭加上以下一行
user root owner;
2)設定許可權
sudo chown root:wheel /usr/local/cellar/nginx/1.17.1/bin/nginx
sudo chmod u+s /usr/local/cellar/nginx/1.17.1/bin/nginx
3)重新啟動
localhost:nginx mhx$ sudo nginx
mac下安裝啟動Mongodb
本人最近才上手mac,在使用mac上面有很多不熟悉的地方,慢慢摸索,記錄下來,以供後續翻閱與參考 第二種 通過homebrew安裝mongodb,terminal下執行以下指令就可以了 這裡,我只講通過homebrew來安裝。1.通過homebrew安裝mongodb brew update bre...
mac下安裝啟動Mongodb
本人最近才上手mac,在使用mac上面有很多不熟悉的地方,慢慢摸索,記錄下來,以供後續翻閱與參考 第二種 通過homebrew安裝mongodb,terminal下執行以下指令就可以了 這裡,我只講通過homebrew來安裝。1.通過homebrew安裝mongodb brew update bre...
linux下安裝nginx和配置nginx
linux的安裝包 1.將jar包放入到linux 2解壓 tar xvf 3.執行命令 configure prefix opt nginx sbin path usr bin nginx 報錯執行命令 yum y install pcre devel yum y install openssl ...