1. 程式人生 > >解決nginx無法訪問問題

解決nginx無法訪問問題

本地無法訪問nginx問題

[[email protected] ]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
[[email protected] ]# /etc/init.d/iptables save

[[email protected] ]# /etc/init.d/iptables restart

 

 

解決nginx無法訪問的問題

1 2 3 4 解決方案-->恢復Nginx預設配置: cd /usr/local/nginx/conf rm nginx.conf cp nginx.conf. default  nginx.conf

  

 

檢視正在監聽的所有Tcp埠與Nginx程序

netstat -lntup   檢視所有tcp埠監聽
ps -ef | grep nginx 檢視nginx程序
netstat -unltp|grep nginx 檢視nginx埠監聽

 

恢復nginx.conf 預設配置檔案,重新啟動nginx

/usr/local/nginx/sbin/nginx -s reload