警方通報“阿里女員工被侵害”案最新進展:兩人涉嫌強制猥褻罪,被依法採取刑事強制措施
阿新 • • 發佈:2021-08-15
Nginx常用命令
cd /usr/local/nginx/sbin/
./nginx 啟動
./nginx -s stop 停止
./nginx -s quit 安全退出
./nginx -s reload 重新載入配置檔案
ps aux|grep nginx 檢視nginx程序
啟動成功訪問 伺服器ip:80
注意:如何連線不上,檢查阿里雲安全組是否開放埠,或者伺服器防火牆是否開放埠!
相關命令: Linux
# 開啟 service firewalld start # 重啟 service firewalld restart # 關閉 service firewalld stop # 檢視防火牆規則 firewall-cmd --list-all # 查詢埠是否開放 firewall-cmd --query-port=8080/tcp # 開放80埠 firewall-cmd --permanent --add-port=80/tcp # 移除埠 firewall-cmd --permanent --remove-port=8080/tcp #重啟防火牆(修改配置後要重啟防火牆) firewall-cmd --reload # 引數解釋 1、firwall-cmd:是Linux提供的操作firewall的一個工具; 2、--permanent:表示設定為持久; 3、--add-port:標識新增的埠;
具體專案實戰:
upstream lb{
server 127.0.0.1:8080 weight=1;
server 127.0.0.1:8081 weight=1;
}
location / {
proxy_pass http://lb;
}