nginx 問題彙總

u013378306發表於2017-05-25

(1)在centos7 中使用nginx做tomcat 反向代理。

出現

The page you are looking for is temporarily unavailable. Please try again later.

則檢查防火牆,和SELinux。關閉selinux

檢視SELinux狀態:

1、/usr/sbin/sestatus -v      ##如果SELinux status引數為enabled即為開啟狀態
SELinux status:                 enabled
2、getenforce                 ##也可以用這個命令檢查
關閉SELinux:
1、臨時關閉(不用重啟機器):
setenforce 0                  ##設定SELinux 成為permissive模式
##setenforce 1 設定SELinux 成為enforcing模式
2、修改配置檔案需要重啟機器:
修改/etc/selinux/config 檔案
將SELINUX=enforcing改為SELINUX=disabled
重啟機器即可



相關文章