首頁 > 運維 > Nginx > linux如何安裝nginx

linux如何安裝nginx

藏色散人
發布: 2019-08-28 13:54:37
原創
9746 人瀏覽過

linux如何安裝nginx

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 了。

   linux如何安裝nginx

執行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

很不幸,打不開連結。以下進行原因排查:

    linux如何安裝nginx

    

說明伺服器的80埠是無法開啟的。

因為我使用的linux系統版本是CentOS7,所以可以在伺服器中執行以下指令來驗證》》

firewall-cmd --query-port=80/tcp
登入後複製

    linux如何安裝nginx

顯然80埠沒有開啟。

下面我們開啟80埠:

firewall-cmd --add-port=80/tcp --permanent
#重启防火墙
systemctl restart firewalld
登入後複製

    --permanent   #永久生效,沒有此參數重新啟動後失效

linux如何安裝nginx

linux如何安裝nginx

linux如何安裝nginx

刷新瀏覽器

    

###====================== 分割線======== ============######配置完成! ######2、設定nginx開機自啟動###
vim /etc/rc.d/rc.local
登入後複製
#############更多Nginx相關技術文章,請造訪###Nginx使用教學###欄位進行學習! ###

以上是linux如何安裝nginx的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板