Nginx+Keepalived(二)

Linux CentOS7安裝Nginx

一、gcc 安裝

安裝 nginx 須要先將官網下載的源碼進行編譯,編譯依賴 gcc 環境。linux

yum install gcc-c++

二、PCRE pcre-devel 安裝

PCRE(Perl Compatible Regular Expressions) 是一個Perl庫,包括 perl 兼容的正則表達式庫。nginx 的 http 模塊使用 pcre 來解析正則表達式,因此須要在 linux 上安裝 pcre 庫,pcre-devel 是使用 pcre 開發的一個二次開發庫。nginx

yum install -y pcre pcre-devel

三、zlib 安裝

zlib 庫提供了不少種壓縮和解壓縮的方式, nginx 使用 zlib 對 http 包的內容進行 gzip 。c++

yum install -y zlib zlib-devel

四、OpenSSL 安裝

OpenSSL 是一個強大的安全套接字層密碼庫,囊括主要的密碼算法、經常使用的密鑰和證書封裝管理功能及 SSL 協議,並提供豐富的應用程序供測試或其它目的使用。
nginx 不只支持 http 協議,還支持 https(即在ssl協議上傳輸http)。正則表達式

yum install -y openssl openssl-devel

五、使用wget命令下載安裝

wget -c https://nginx.org/download/nginx-1.14.2.tar.gz
tar -zxvf nginx-1.14.2.tar.gz
cd nginx-1.14.2
./configure
make
make install
whereis nginx
./nginx
./nginx -s stop #此方式至關於先查出nginx進程id再使用kill命令強制殺掉進程。
./nginx -s quit #此方式中止步驟是待nginx進程處理任務完畢進行中止。
./nginx -s reload #當nginx的配置文件nginx.conf修改後,要想讓配置生效須要重啓nginx
./nginx -t #檢測配置文件是否正常
pkill nginx #強制關閉
ps aux|grep nginx #查看nginx進程
#CentOS 7.0默認使用的是firewall做爲防火牆
firewall-cmd --state #查看防火牆狀態
systemctl stop firewalld.service #中止firewall
systemctl disable firewalld.service #禁止firewall開機啓動
vim /etc/rc.local #新增一行/usr/local/nginx/sbin/nginx,設置執行權限chmod 755 rc.local,開機自動啓動nginx

Nginx + Keepalived高可用

相關文章
相關標籤/搜索