Nginx負載均衡-linux伺服器
阿新 • • 發佈:2018-12-05
Nginx 是一款輕量級的 Web 伺服器是由 C 語言開發,所以在linux中先要安裝環境。
安裝環境
#####安裝 Nginx 的編譯環境 gcc yum install gcc-c++ #####安裝 pcre pcre-devel,nginx 的 http 模組使用 pcre 解析正則表示式,所以安裝 perl 相容的正則#####表示式庫 yum install -y pcre pcre-devel #####安裝 zlib,nginx 使用 zlib 對 http 包的內容進行 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 -zxvf nginx-1.15.2.tar.gz
##2.使用預設配置,nginx 被安裝到 /usr/local/nginx 下。
cd nginx-1.15.2
./configure
##3.編譯
make
##4.安裝
make install
##5.配置環境變數
vim /etc/profile
鍵入下面內容
export NGINX_HOME=/usr/local/nginx
export PATH=$PATH:$NGINX_HOME/sbin
##6.生效配置檔案
source /etc/profile
nginx的常用操作
##1.nginx啟動 nginx ##2.nginx檢視程序 ps -ef | grep nginx ##3.nginx停止 nginx -s stop ##4.nginx重啟 nginx -s reload ##5.測試nginx配置檔案是否正常 nginx -t ##6.nginx開機自啟 開啟vim /etc/rc.local 在 rc.local 檔案中加入 /usr/local/nginx/sbin/nginx ##7.nginx指定配置檔案啟動 nginx -c /usr/local/nginx/conf/nginx.conf