記錄安裝Nginx1 16 1

2022-06-25 19:24:10 字數 1466 閱讀 3885

基本環境:

系統版本:centos7.8 x64

nginx版本:1.16.1確定安裝目錄(/usr/local/nginx)

1. 安裝依賴

yum -y install gcc gcc-c++ automake pcre pcre-devel zlib zlib-devel openssl openssl-devel

cd /usr/local/src

wget

3.解壓: 

tar -zxvf nginx-1.16.1.tar.gz

3.編譯: cd nginx-1.16.1

4.安裝:

make && make install

5.配置開機自啟動:

在目錄/usr/lib/systemd/system下建立檔案nginx.service,檔案內容如下:

[unit]

description=nginx

after=network.target

[service]

type=forking

execstart=/usr/local/nginx/sbin/nginx

execreload=/usr/local/nginx/sbin/nginx -s reload

execstop=/usr/local/nginx/sbin/nginx -s quit

privatetmp=true

[install]

wantedby=multi-user.target

6.命令

設定開機啟動:

systemctl enable nginx

啟動nginx:

systemctl start nginx

停止nginx:

systemctl stop nginx

重啟nginx:

systemctl reload nginx

注意:容易出錯的是上述命令會不成功

解決方案:

1以服務的方式啟動nginx

# 結束nginx服務

pkill nginx

2.再使用上述命令啟動並檢視服務是否啟動

systemctl start nginx

systemctl enable nginx

systemctl status nginx

netstat -ntlp | grep nginx

nginx 安裝記錄

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

nginx安裝記錄

第二步 配置nginx安裝所需的環境 第三步 解壓nginx壓縮包並安裝 第四步 編譯安裝nginx 第五步 啟動nginx 第五步 nginx配置 0.tar.gzyum install y gcc c nginx的rewrite模組和http核心模組會使用到pcre正規表示式語法。這裡需要安裝兩...

Nginx和Tomcat安裝記錄

2.解壓縮nginx,執行如下命令 cd nginx 1.7.7 configure 3.configure出錯,需要安裝pcre 5.在 usr local下解壓縮並編譯安裝 configure prefix usr local pcre make make install 6.重新嘗試安裝 ng...