Centos7搭建nginx並提供外網訪問

2021-08-20 02:29:40 字數 832 閱讀 6931

問題:搭建nginx之後,80埠,其他機器無法訪問,但是可以ping通

//允許某埠放行

# firewall-cmd --permanent --add-port=3389/tcp

需要留意的是在編寫完規則之後,要執行--reload引數

# firewall-cmd --reload

查詢埠號80

是否開啟:firewall

-cmd--

query

-port=80/tcp

永久開放80埠號:firewall

-cmd--

permanent--

zone=public--

add-

port=80/tcp

移除80埠號:firewall

-cmd--

permanent--

zone=public--

remove

-port=80/tcp--

zone

#作用域--

add-

port=80/tcp

#新增埠,格式為:埠/通訊協議--

permanent

#永久生效,沒有此引數重啟後失效

檢視防火牆狀態

systemctl

status

firewalld

.service

啟動|關閉|重新啟動

防火牆systemctl

[start|stop|restart

]firewalld

.service

centos7搭建Nginx平台

start nginx 開啟 nginx nginx t 測試配置檔案是否有語法錯誤 nginx s reopen 重新寫入日誌檔案 nginx s stop 強制停止nginx服務 nginx s quit 優雅地停止nginx服務 即處理完所有請求後再停止服務 openssl x509 req ...

CentOS7安裝Nginx並部署

伺服器ip是192.168.36.136 1 直接yum install nginx即可 2 主配置檔案是 etc nginx 下的nginx.conf,另外乙個是 etc nginx conf.d 下的default.conf 主配置檔案最末行通過 include etc nginx conf.d...

centos7搭建nginx靜態伺服器

yum install gcc c 二.pcre pcre devel 安裝 pcre perl compatible regular expressions 是乙個perl庫,包括 perl 相容的正規表示式庫。nginx 的 http 模組使用 pcre 來解析正規表示式,所以需要在 linux...