已在 VBOX 上安装 Centos7 DVD 版本。已安装 nginx,并且 nginx -t 成功。可以从桌面 ping 通,但尝试通过 IP 地址浏览时超时。使用标准 /etc/nginx/conf.d/default.conf 。已设置 setenforce Permissive
/var/log/nginx/error.log 或 access.log 中没有条目
已安装 MS-SQL ODBC 驱动程序并且可以看到远程 SQL Server。
短暂性脑缺血发作
答案1
检查你的防火墙)
正确配置它(不要忘记service iptables save
保存它):
iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
如果不需要,请禁用:
[root@wcmisdlin02 ~]# service iptables stop && chkconfig iptables off
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
[root@wcmisdlin02 ~]#
答案2
CentOS 7 现在正在使用firewalld。
例子:
firewall-cmd --zone=public --add-port=80/tcp --permanent
重新加载规则:
firewall-cmd --reload
顺便说一句:也许你想在启动时自动启动 nginx 服务:
# systemctl enable nginx