linux/centOS 下安裝 ngnix

  Nginx 是一款輕量級的 Web 服務器/反向代理服務器,比較流行,建議在 Linux 下安裝運行。html

Nginx 須要的依賴

它們包括:gcc,openssl,zlib,pcre(可經過rpm -q命令查詢是否已安裝),已安裝則跳過nginx

  • 安裝 gcc
    安裝 Nginx 的編譯環境 gcc
yum install gcc-c++
  • 安裝 pcre pcre-devel
    nginxhttp 模塊使用 pcre 解析正則表達式,因此安裝 perl 兼容的正則表達式庫
yum install -y pcre pcre-devel
  • 安裝 zlib
    nginx 使用 zlibhttp 包的內容進行 gzip
yum install -y zlib zlib-devel
  • 安裝 Open SSL
    nginx 不只支持 http 協議,還支持 https(即在 ssl 協議上傳輸 http),若是使用了 https ,須要安裝 OpenSSL
yum install -y openssl openssl-devel

Nginx 的下載

官網下載

1.直接下載.tar.gz安裝包,地址:https://nginx.org/en/download.html正則表達式

2.使用wget命令下載(推薦放在 /usr/local路徑下)swift

wget -c https://nginx.org/download/nginx-1.12.2.tar.gz

 

我下載的是1.12.2版本,這個是目前的穩定版。
vim

Nginx 的安裝

  解壓

tar -zxvf nginx-1.12.2.tar.gz

進入 解壓後的目錄
cd /usr/local/nginx-1.12.2
cd /usr/local/nginx-1.12.2

  配置

   默認就能夠了。固然,若是你要本身配置目錄也是能夠的

  1.使用默認配置ruby

     ./configurebash

  2.自定義配置(不推薦)服務器

./configure \
--prefix=/usr/local/nginx \ --conf-path=/usr/local/nginx/conf/nginx.conf \ --pid-path=/usr/local/nginx/conf/nginx.pid \ --lock-path=/var/lock/nginx.lock \ --error-log-path=/var/log/nginx/error.log \ --http-log-path=/var/log/nginx/access.log \ --with-http_gzip_static_module \ --http-client-body-temp-path=/var/temp/nginx/client \ --http-proxy-temp-path=/var/temp/nginx/proxy \ --http-fastcgi-temp-path=/var/temp/nginx/fastcgi \ --http-uwsgi-temp-path=/var/temp/nginx/uwsgi \ --http-scgi-temp-path=/var/temp/nginx/scgi

 

    注意:使用默認配置時,nginx 被安裝到 /usr/local/nginx 下。測試

  編譯、安裝(若是使用默認配置,則nginx安裝在/usr/local/nginx目錄下)

make 
make install

  查找安裝路徑:

whereis nginx

 

  配置環境變量(可選)

vim /etc/profile

    在合適位置添加環境變量ui

export NGINX_HOME=/usr/local/nginx export PATH=$PATH:$NGINX_HOME/sbin

   使配置生效

 source /etc/profile

Nginx 的運行

由於將 Nginx 配置到了環境變量中,所以,在任何路徑下均可以直接使用 nginx 命令,而不須要進入 nginx 路徑下執行。

若是沒有配置環境變量,則須要先進入  cd /usr/local/nginx/sbin

  • 啓動nginx
cd  /usr/local/nginx/sbin
./nginx
  • 查看 nginx 進程
ps -ef | grep nginx
  • 關閉nginx

./nginx -s stop:此方式至關於先查出nginx進程id再使用kill命令強制殺掉進程。

./nginx -s quit:此方式中止步驟是待nginx進程處理任務完畢進行中止。 ./nginx -s stop
./nginx -s quit

 

  • 重啓nginx    

    1.先中止再啓動(推薦):
       對 nginx 進行重啓至關於先中止再啓動,即先執行中止命令再執行啓動命令。以下:

./nginx -s quit ./nginx

     2.修改配置文件,從新加載配置文件:
        當 ngin x的配置文件 nginx.conf 修改後,要想讓配置生效須要重啓 nginx,使用-s reload不用先中止 ngin x再啓動 nginx 便可將配置信息在 nginx 中生效,以下:
         ./nginx -s reload

  • 測試 nginx 配置腳本是否運行正常

       一般能夠經過這個命令查看 nginx 配置文件的位置

./nginx -t 

 

  • nginx 開機自啓

        即在rc.local增長啓動代碼就能夠了。

vi /etc/rc.local

       增長一行 /usr/local/nginx/sbin/nginx


       設置執行權限:

 chmod 755 rc.local

 

 

 

  • nginx 指定配置文件啓動

   nginx -c /usr/local/nginx/conf/nginx.conf

 

 

參考文章:https://blog.csdn.net/qq_30038111/article/details/79410354

相關文章
相關標籤/搜索