天天看點

linux使用yum源安裝nginx

1.安裝依賴包

##一鍵安裝上面四個依賴
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
           

2.下載下傳并 解壓安裝包

//建立一個檔案夾
cd /usr/local
mkdir nginx
cd nginx
//下載下傳tar包
wget http://nginx.org/download/nginx-1.21.6.tar.gz
tar -xvf nginx-1.21.6.tar.gz
           

3.安裝nginx

//進入nginx目錄
cd /usr/local/nginx
//進入目錄
cd nginx-1.13.7
//執行指令 考慮到後續安裝ssl證書 添加兩個子產品
./configure --with-http_stub_status_module --with-http_ssl_module
//執行make指令
make
//執行make install指令
make install
           

4.配置nginx.conf

vim /usr/local/nginx/conf/nginx.conf
           

5.啟動nginx服務

# 校驗配置檔案是否正确
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf -t
# 啟動nginx
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
           

其他指令

## 檢視ngxin程序
ps -ef | grep nginx
## 開放80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
## 重新開機防火牆
firewall-cmd --reload
## 重新開機nginx
/usr/local/nginx/sbin/nginx -s reload
           

解除安裝nginx

## 停止nginx服務
ps -ef|grep nginx
## 删除程序
kill 程序Id
/usr/local/nginx/sbin/nginx -s stop
## 删除ngxin檔案
whereis nginx
find / -name nginx
rm -rf /usr/local/nginx
## 解除安裝nginx依賴
yum remove nginx
           

繼續閱讀