博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决nginx无法访问问题
阅读量:5290 次
发布时间:2019-06-14

本文共 541 字,大约阅读时间需要 1 分钟。

本地无法访问nginx问题

[root@localhost ]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

[root@localhost ]# /etc/init.d/iptables save

[root@localhost ]# /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

转载于:https://www.cnblogs.com/goodboy321/p/10053548.html

你可能感兴趣的文章
VIO的Bundle Adjustment推导
查看>>
activemq5.14+zookeeper3.4.9实现高可用
查看>>
asp.net FileUpload控件文件格式的判断及文件大小限制
查看>>
angular(1.5.8)
查看>>
h5的video标签支持的视频格式
查看>>
大数据没那么重要
查看>>
TCP/IP详解学习笔记(3)IP协议ARP协议和RARP协议
查看>>
简单【用户输入验证】
查看>>
学android:直接用jdk来helloworld
查看>>
Access Jira RESTful API by cURL
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
Spark基础脚本入门实践3:Pair RDD开发
查看>>
HDU4405--Aeroplane chess(概率dp)
查看>>
RIA Test:try catch 对 Error #1009 (无法访问空对象引用的属性或方法)的处理
查看>>
python使用easyinstall安装xlrd、xlwt、pandas等功能模块的方法
查看>>
一个杯子的测试用例
查看>>
前端面试总结——http、html和浏览器篇
查看>>
CS0103: The name ‘Scripts’ does not exist in the current context解决方法
查看>>
20130330java基础学习笔记-语句_for循环嵌套练习2
查看>>
openCV(一)---将openCV框架导入iOS工程中
查看>>