亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

centos7下編譯安裝nginx并實現日志輪替

發布時間:2020-06-24 19:49:45 來源:網絡 閱讀:1140 作者:菜鳥點滴 欄目:建站服務器

centos7編譯安裝nginx:

  首先確保系統上存在編譯安裝使用的必要工具運行:

 # yum groupinstall "development tools" "server platform development"

    1 下載PCRE version 4.4 — 8.40 (ngx_http_rewrite_module模塊需要)   

   # wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz

    2 下載zlib ( ngx_http_gzip_module模塊需要)

   # wget https://zlib.net/zlib-1.2.11.tar.gz

    3 下載openssl (http_ssl_module模需要)

   # wget https://github.com/openssl/openssl/archive/OpenSSL_1_1_0f.tar.gz

    3 下載nginx   

   # wget https://nginx.org/download/nginx-1.12.1.tar.gz


正式開工:

  1 解壓PCRE

  # tar xzvf pcre-8.40.tar.gz -C /usr/local/src/

  2 解壓zlib     

  # tar xzf zlib-1.2.11.tar.gz -C /usr/local/src/

  3 解壓openssl

  # tar xzf OpenSSL_1_1_0f.tar.gz -C /usr/local/src/

  4 安裝nginx

    添加nginx用戶:

  # groupadd nginx
  # useradd -g nginx -s /sbin/nologin nginx

    創建nginx日志保存目錄

  # mkdir /var/log/nginx

    解壓安裝包

  # tar xzf nginx-1.12.1.tar.gz
  # cd nginx-1.12.1
  # ./configure --prefix=/usr/local/nginx \
    --conf-path=/etc/nginx/nginx.conf \
    --pid-path=/var/log/nginx/run/nginx.pid \
    --error-log-path=/var/log/nginx/error.log \
    --http-log-path=/var/log/nginx/access.log \
    --user=nginx --group=nginx \
    --with-select_module \
    --with-poll_module \
    --with-http_ssl_module \
    --with-pcre=/usr/local/src/pcre-8.40 \
    --with-zlib=/usr/local/src/zlib-1.2.11 \
    --with-openssl=/usr/local/src/openssl-OpenSSL_1_1_0f
  # make && make install

    此時,nginx已經安裝完成,可以去/usr/local/nginx/sbin/下,通過運行 ./nginx 命令來啟動nginx

  5 配置NGINX systemd service (注意:根據自己配置,配置路徑信息!)  

  #vim /lib/systemd/system/nginx.service
   [Unit]
   Description=The NGINX HTTP and reverse proxy server
   After=syslog.target network.target remote-fs.target nss-lookup.target
   [Service]
   Type=forking
   PIDFile=/var/log/nginx/run/nginx.pid
   ExecStartPre=/usr/local/nginx/sbin/nginx -t
   ExecStart=/usr/local/nginx/sbin/nginx
   ExecReload=/bin/kill -s HUP $MAINPID
   ExecStop=/bin/kill -s QUIT $MAINPID
   PrivateTmp=true
   [Install]
   WantedBy=multi-user.target

  此時

   啟動nginx

  #systemctl start nginx

   查看狀態

  # systemctl status nginx

   停止nginx

  # systemctl stop nginx

  6 編譯安裝的nginx不會做日志分割

   #vim logrotate.sh
     #!/bin/bash
     cd /var/log/nginx
     mv access.log access.log.$(date +%F)
     mv error.log error.log.$(date +%F)
     kill -USR1 $(cat /var/log/nginx/run/nginx.pid)
     sleep 1
     gzip access.log.$(date +%F)
     gzip error.log.$(date +%F)

    通過crontab實現定時日志輪替。


若以上內容,有什么問題,請指正。

謝謝!


參考鏈接 https://nginx.org/en/docs/configure.html

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

罗江县| 讷河市| 梨树县| 茶陵县| 墨竹工卡县| 秦皇岛市| 右玉县| 婺源县| 武汉市| 萝北县| 伊宁市| 治县。| 曲靖市| 闻喜县| 清河县| 望城县| 彝良县| 洞头县| 安仁县| 卢龙县| 正宁县| 九龙坡区| 龙泉市| 菏泽市| 广宗县| 乌恰县| 嘉荫县| 南昌县| 南部县| 福州市| 马山县| 延川县| 巫溪县| 盐津县| 南涧| 崇仁县| 客服| 三门峡市| 惠来县| 瓮安县| 米泉市|