国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Nginx筆記(一)Nginx安裝

shinezejian / 908人閱讀

摘要:環境準備準備服務器確保有網絡確保可用關閉規則查看規則關閉規則保險起見,再查看下查表里是否有規則有的話,也關閉關閉策略查看是否開啟關閉安裝基礎庫開始安裝訪問官網復制以下源服務器上創建的源改成驗證源從源安裝驗證顯示如下啟動

環境準備

準備服務器
centos7.2

確保有網絡

ping www.baidu.com

確保yum可用

yum list | grep gcc

關閉iptables規則

# 查看iptables規則
iptables -L
# 關閉iptables規則
iptables -F
# 保險起見,再查看下查nat表里是否有規則
iptables -t nat -L
# 有的話,也關閉
iptables -t nat -F

關閉selinux策略

# 查看selinux是否開啟
getenforce
# 關閉
setenforce 0

安裝基礎庫

yum -y install gcc gcc-c++ autoconf pcre pcre-devel make automake
開始安裝

訪問Nginx官網
http://nginx.org/en/linux_pac...

復制以下yum源

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
gpgcheck=0
enabled=1

服務器上創建nginx的yum源

cd /etc/yum.repos.d
vi nginx.repo
# OS/OSRELEASE改成centos/7
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

驗證yum源

yum list | grep nginx

...
nginx.x86_64                             1:1.12.2-1.el7_4.ngx           nginx
...

從yum源安裝nginx

yum install nginx

驗證nginx

nginx -v
# 顯示如下
nginx version: nginx/1.12.2

啟動Nginx

systemctl start nginx.service

進程確認

ps -aux | grep nginx
root      9384  0.0  0.0  46296   952 ?        Ss   22:30   0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx     9386  0.0  0.1  46680  1912 ?        S    22:30   0:00 nginx: worker process
root      9388  0.0  0.0 112648   968 pts/0    R+   22:30   0:00 grep --color=auto nginx

訪問一下,80默認端口

初始備用目錄

cd /opt
mkdir app download logs work backup

備份Nginx配置文件

cp /etc/nginx/nginx.conf /opt/backup
cp /etc/nginx/conf.d/default.conf /opt/backup
相關說明

查看安裝過程都創建了哪些文件/目錄

rpm -ql nginx
/etc/logrotate.d/nginx
/etc/nginx
/etc/nginx/conf.d
/etc/nginx/conf.d/default.conf
/etc/nginx/fastcgi_params
/etc/nginx/koi-utf
/etc/nginx/koi-win
/etc/nginx/mime.types
/etc/nginx/modules
/etc/nginx/nginx.conf
/etc/nginx/scgi_params
/etc/nginx/uwsgi_params
/etc/nginx/win-utf
/etc/sysconfig/nginx
/etc/sysconfig/nginx-debug
/usr/lib/systemd/system/nginx-debug.service
/usr/lib/systemd/system/nginx.service
/usr/lib64/nginx
/usr/lib64/nginx/modules
/usr/libexec/initscripts/legacy-actions/nginx
/usr/libexec/initscripts/legacy-actions/nginx/check-reload
/usr/libexec/initscripts/legacy-actions/nginx/upgrade
/usr/sbin/nginx
/usr/sbin/nginx-debug
/usr/share/doc/nginx-1.12.2
/usr/share/doc/nginx-1.12.2/COPYRIGHT
/usr/share/man/man8/nginx.8.gz
/usr/share/nginx
/usr/share/nginx/html
/usr/share/nginx/html/50x.html
/usr/share/nginx/html/index.html
/var/cache/nginx
/var/log/nginx

相關文件和目錄的說明

路徑 類型 作用
/etc/logrotate.d/nginx 配置文件 Nginx日志輪轉,用于logrotate服務的日志切割
/etc/nginx
/etc/nginx/nginx.conf
/etc/nginx/conf.d
/etc/nginx/conf.d/default.conf
目錄、配置文件 Nginx主配置文件
/etc/nginx/fastcgi_params
/etc/nginx/uwsgi_params
/etc/nginx/scgi_params
配置文件 cgi配置相關,fastcgi配置
/etc/nginx/koi-utf
/etc/nginx/koi-win
/etc/nginx/win-utf
配置文件 編碼轉換映射文件
/etc/nginx/mime.types 配置文件 設置http協議的Content-Type與擴展名對應關系
/usr/lib/systemd/system/nginx-debug.service
/usr/lib/systemd/system/nginx.service
/etc/sysconfig/nginx
/etc/sysconfig/nginx-debug
配置文件 (centos7)配置出系統守護進程管理器的管理方式
/usr/lib64/nginx/modules
/etc/nginx/modules
目錄 nginx模塊目錄
/usr/sbin/nginx
/usr/sbin/nginx-debug
命令 nginx服務的啟動終端管理命令
/var/cache/nginx 目錄 Nginx的緩存目錄
/var/log/nginx 目錄 nginx的日志目錄

查看安裝過程的編譯參數

nginx -V
nginx version: nginx/1.12.2
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC)
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC" --with-ld-opt="-Wl,-z,relro -Wl,-z,now -pie"

相關編譯參數的說明

編譯選項 作用
--prefix=/etc/nginx
--sbin-path=/usr/sbin/nginx
--modules-path=/usr/lib64/nginx/modules
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/var/run/nginx.pid
--lock-path=/var/run/nginx.lock
安裝目的目錄或路徑
--http-client-body-temp-path=/var/cache/nginx/client_temp
--http-proxy-temp-path=/var/cache/nginx/proxy_temp
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp
--http-scgi-temp-path=/var/cache/nginx/scgi_temp
執行對應模塊時nginx所保留的臨時文件
--user=nginx
--group=nginx
設定Nginx進程啟動的用戶和用戶組
--with-cc-opt=parameters 設置額外的參數將被添加到CFLAGS變量
--with-ld-opt=parameters 設置附加參數,鏈接系統庫
--with-http_sub_status_module Nginx客戶端狀態
--with-http_random_index_module 目錄中隨機選擇一個隨機主頁
--with-http_sub_module HTTP內容替換

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/39778.html

相關文章

  • Nginx筆記-0-Centos環境下安裝

    摘要:如果發現運行只有一行回顯,可能是當前端口被占用,使用端口號,默認,如果打印結果為兩行或以上,即端口被占用,需要修改配置文件的端口號再重新運行。 概述 記錄一下 Nginx 通過安裝包以及通過源代碼安裝兩種方式。目標是第一次接觸 Nginx 的人也能看懂直接用。 一. 使用安裝包配置 Tip: 這種安裝方式比較簡單,官方文檔也說得比較清楚詳細。這里搭建的環境是 Centos7, 可以sy...

    Rindia 評論0 收藏0
  • 安裝配置gunicorn和NGINX的學習筆記

    摘要:博客寫得差不多了,打算部署到云上因為速度的關系,不打算部署在上,于是申請了阿里云,環境是上篇文章提到的位安裝和配置好和,又稍微了解點服務器的知識后,打算按這里的方法進行部署,思路是用當應用容器,當反向代理安裝安裝非常簡單,一條命令就解決了測 博客寫得差不多了,打算部署到云上因為速度的關系,不打算部署在AWS上,于是申請了阿里云,環境是上篇文章提到的CentOS 7 64位安裝和配置好P...

    Ali_ 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<