centos8自定義目錄安裝nginx(教程詳解)
1.安裝工具和庫
# PCRE是一個Perl庫,包括 perl 兼容的正則表達式庫。nginx 的 http 模塊使用 pcre 來解析正則表達式
# zlib庫提供了很多種壓縮和解壓縮的方式, nginx 使用 zlib 對 http 包的內(nèi)容進行 gzip
yum -y install gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel
2.目錄結(jié)構(gòu)
源碼目錄:/home/werben/pkgsrc/nginx
安裝目錄:/home/werben/application/nginx
3.下載解壓源碼
# 官網(wǎng)地址: https://nginx.org/en/download.html
wget -c https://nginx.org/download/nginx-1.17.5.tar.gz
4.創(chuàng)建用戶組和用戶
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服務(wù) systemctl start nginx.service #停止nginx服務(wù) systemctl stop nginx.service #設(shè)置開機自啟動 systemctl enable nginx.service #停止開機自啟動 systemctl disable nginx.service #查看服務(wù)當(dāng)前狀態(tài) systemctl status nginx.service #重新啟動服務(wù) systemctl restart nginx.service #查看所有已啟動的服務(wù) systemctl list-units --type=service
10.出現(xiàn)問題和解決方法
#如果`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. #執(zhí)行 systemctl status nginx.service #如果出現(xiàn)如下錯誤 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配置文件的結(jié)構(gòu)說明
所有Nginx配置文件都位于/etc/nginx/目錄中。
Nginx的主要配置文件是/etc/nginx/nginx.conf。
為每個域創(chuàng)建一個單獨的配置文件使服務(wù)器易于維護。
Nginx服務(wù)器阻止文件必須以結(jié)尾.conf并存儲在/etc/nginx/conf.d目錄中。您可以根據(jù)需要擁有任意數(shù)量的服務(wù)器塊。
遵循標(biāo)準(zhǔn)命名約定是一個好習(xí)慣。例如,如果域名是,mydomain.com則配置文件應(yīng)命名為mydomain.com.conf
如果在域服務(wù)器塊中使用可重復(fù)的配置段,則最好將這些段重構(gòu)為片段。
Nginx日志文件(access.log和error.log)位于/var/log/nginx/目錄中。建議有不同access和error日志文件每個服務(wù)器模塊。
您可以將域文檔的根目錄設(shè)置為所需的任何位置。webroot的最常見位置包括:
/home/<user_name>/<site_name> /var/www/<site_name> /var/www/html/<site_name> /opt/<site_name> /usr/share/nginx/html
總結(jié)
以上所述是小編給大家介紹的centos8自定義目錄安裝nginx,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對我們網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!
上一篇:在 Linux 終端中查找域名 IP 地址的命令(五種方法)
欄 目:Linux/apache
下一篇:Nginx出現(xiàn)500 Internal Server Error 錯誤的解決方案
本文標(biāo)題:centos8自定義目錄安裝nginx(教程詳解)
本文地址:http://mengdiqiu.com.cn/a1/Linux_apache/10644.html
您可能感興趣的文章
- 01-10CentOS8 yum/dnf 配置國內(nèi)源的方法
- 01-10淺析CentOS8虛擬機訪問Windows10主機文件夾方法
- 01-10centos8安裝圖解(超詳細教程)
- 01-10CentOS8.0 網(wǎng)絡(luò)配置的實現(xiàn)
- 01-10CentOS8.0 安裝配置ftp服務(wù)器的實現(xiàn)方法
- 01-10CentOS8 Linux 8.0.1905的安裝過程(圖解)
- 01-10詳解Centos8 配置靜態(tài)IP的實現(xiàn)
- 01-10從Centos7升級到Centos8的教程(圖文詳解)
- 01-10linux文件目錄管理命令整理總結(jié)
- 01-10如何將CentOS7升級至CentOS8(詳細步驟)


閱讀排行
本欄相關(guān)
- 04-02linux關(guān)閉串口命令 關(guān)閉linux端口命令
- 04-02linux文件命令重命名 linux重命名文件名
- 04-02linux中jobs命令 shell jobs命令
- 04-02linux命令注入過濾 linux 代碼注入
- 04-02linux依次執(zhí)行命令 linux命令的執(zhí)行過程
- 04-02linux命令注銷vnc linux命令行注銷用戶
- 04-02linux命令免輸入 linux配置免密登錄
- 04-02軟交換linux命令 軟交換網(wǎng)絡(luò)主要協(xié)議
- 04-02linux命令歷史記錄 linux查看歷史記錄的
- 04-02linux命令頁面 linux命令頁面中文
隨機閱讀
- 01-10C#中split用法實例總結(jié)
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-10delphi制作wav文件的方法
- 01-11ajax實現(xiàn)頁面的局部加載
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 04-02jquery與jsp,用jquery
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 08-05織夢dedecms什么時候用欄目交叉功能?
- 01-10使用C語言求解撲克牌的順子及n個骰子
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文