好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > centos8自定義目錄安裝nginx(教程詳解)

centos8自定義目錄安裝nginx(教程詳解)

熱門標簽:400電話干嘛怎么申請信用卡 長春電銷外呼系統代理商 百度地圖標注尺寸無法顯示 泰州智能外呼系統排名 400電話申請知乎 大連電銷外呼系統運營商 代理外呼系統創業 接電話機器人罵人 外呼系統虛擬號碼

1.安裝工具和庫

# PCRE是一個Perl庫,包括 perl 兼容的正則表達式庫。nginx 的 http 模塊使用 pcre 來解析正則表達式

# zlib庫提供了很多種壓縮和解壓縮的方式, nginx 使用 zlib 對 http 包的內容進行 gzip

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

2.目錄結構

源碼目錄:/home/werben/pkgsrc/nginx
安裝目錄:/home/werben/application/nginx

3.下載解壓源碼

# 官網地址: https://nginx.org/en/download.html
wget -c https://nginx.org/download/nginx-1.17.5.tar.gz

4.創建用戶組和用戶

groupadd www
useradd -g www www

5.編譯源碼

./configure --user=www --group=www --prefix=/home/werben/application/nginx --with-http_v2_module --with-http_ssl_module --with-http_sub_module --with-http_stub_status_module --with-http_gzip_static_module --with-http_flv_module --with-http_mp4_module --with-pcre

make && make install

6.映射全局命令

ln -s /home/werben/application/nginx/sbin/nginx /usr/local/bin/nginx

7.啟動,停止,重啟

nginx -s stop
nginx -s quit
ngins -s reload

8.檢測配置文件nginx.conf正確性

nginx  -t

9.開機自啟動

vim /lib/systemd/system/nginx.service
[Unit]
Description=nginx
After=network.target

[Service]
Type=forking
ExecStart=nginx
ExecReload=nginx reload
ExecStop=nginx quit
PrivateTmp=true

[Install]
WantedBy=multi-user.target
#重新加載守護進程
systemctl daemon-reload

#啟動nginx服務
systemctl start nginx.service
#停止nginx服務
systemctl stop nginx.service
#設置開機自啟動
systemctl enable nginx.service
#停止開機自啟動
systemctl disable nginx.service
#查看服務當前狀態
systemctl status nginx.service
#重新啟動服務
systemctl restart nginx.service
#查看所有已啟動的服務
systemctl list-units --type=service

10.出現問題和解決方法

#如果`systemctl start nginx.service`提示如下報錯

Job for nginx.service failed because the control process exited with error code.
See "systemctl status nginx.service" and "journalctl -xe" for details.

#執行
systemctl status nginx.service
#如果出現如下錯誤
  Process: 35783 ExecStart=...nginx/sbin/nginx(code=exitedstatus=203/EXEC)
  nginx.service: Control process exited, code=exited status=203
  systemd[1]: nginx.service: Failed with result 'exit-code'.
  localhost.localdomain systemd[1]: Failed to start nginx.


journalctl -xe

#如果看到如下信息     
  If you believe that systemd should be allowed execute access on the>
  Then you should report this as a bug.
  You can generate a local policy module to allow this access.
  Do allow this access for now by executing:
  # ausearch -c '(nginx)' --raw | audit2allow -M my-nginx
  # semodule -X 300 -i my-nginx.pp


#解決方法
setenforce 0
vim /etc/selinux/config
SELINUX=disabled

ps:Nginx配置文件的結構說明

所有Nginx配置文件都位于/etc/nginx/目錄中。

Nginx的主要配置文件是/etc/nginx/nginx.conf。

為每個域創建一個單獨的配置文件使服務器易于維護。

Nginx服務器阻止文件必須以結尾.conf并存儲在/etc/nginx/conf.d目錄中。您可以根據需要擁有任意數量的服務器塊。

遵循標準命名約定是一個好習慣。例如,如果域名是,mydomain.com則配置文件應命名為mydomain.com.conf

如果在域服務器塊中使用可重復的配置段,則最好將這些段重構為片段。

Nginx日志文件(access.log和error.log)位于/var/log/nginx/目錄中。建議有不同access和error日志文件每個服務器模塊。

您可以將域文檔的根目錄設置為所需的任何位置。webroot的最常見位置包括:

/home/<user_name>/<site_name>
/var/www/<site_name>
/var/www/html/<site_name>
/opt/<site_name>
/usr/share/nginx/html

總結

以上所述是小編給大家介紹的centos8自定義目錄安裝nginx,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

標簽:臺灣 安陽 大慶 清遠 中衛 興安盟 雅安 長治

巨人網絡通訊聲明:本文標題《centos8自定義目錄安裝nginx(教程詳解)》,本文關鍵詞  centos8,自定義,目錄,安裝,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《centos8自定義目錄安裝nginx(教程詳解)》相關的同類信息!
  • 本頁收集關于centos8自定義目錄安裝nginx(教程詳解)的相關信息資訊供網民參考!
  • 推薦文章