linux如何安裝nginx?
在安裝nginx前首先要確認系統中安裝了gcc、pcre- devel、zlib-devel、openssl-devel。
相關推薦:【Linux教學】
安裝指令:
yum -y install gcc pcre-devel zlib-devel openssl openssl-devel
nginx下載位址:https://nginx.org/download/
下載“nginx-1.9.9.tar.gz”,移動到/usr/local/下。
## 解压 tar -zxvf nginx-1.9.9.tar.gz ##进入nginx目录 cd nginx-1.9.9 ## 配置 ./configure --prefix=/usr/local/nginx # make make make install
OK,現在可以執行make 了。
執行make、make install指令
測試是否安裝成功
# cd到刚才配置的安装目录/usr/loca/nginx/ ./sbin/nginx -t
錯誤訊息:
nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (2: No such file or directory) 2016/09/13 19:08:56 [emerg] 6996#0: open() "/usr/local/nginx/logs/access.log" failed (2: No such file or directory)
原因分析:nginx/目錄下沒有logs資料夾
解決方法:
mkdir logs chmod 700 logs
正常狀況的資訊輸出:
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
#啟動nginx
cd /usr/local/nginx/sbin ./nginx //启动nginx
在瀏覽器中輸入伺服器的ip位址,如:192.168.1.12
很不幸,打不開連結。以下進行原因排查:
說明伺服器的80埠是無法開啟的。
因為我使用的linux系統版本是CentOS7,所以可以在伺服器中執行以下指令來驗證》》
firewall-cmd --query-port=80/tcp
顯然80埠沒有開啟。
下面我們開啟80埠:
firewall-cmd --add-port=80/tcp --permanent #重启防火墙 systemctl restart firewalld
--permanent #永久生效,沒有此參數重新啟動後失效
vim /etc/rc.d/rc.local#############更多Nginx相關技術文章,請造訪###Nginx使用教學###欄位進行學習! ###
以上是linux如何安裝nginx的詳細內容。更多資訊請關注PHP中文網其他相關文章!