您好,登錄后才能下訂單哦!
實驗步驟:
一、安裝壓縮包
tar zxvf nginx-1.6.0.tar.gz -C /opt
二、安裝編譯環境
yum install gcc gcc-c++ pcre-devel zlib-devel
三、創建管理用戶
useadd -M -s /sbin/nologin www
注:/bin/false是最嚴格的禁止login選項,一切服務都不能用,
/sbin/nologin只是不允許系統login,可以使用其他ftp等服務
四、編譯安裝
./configure \
--prefix=/usr/local/nginx \
--user=www \
--group=www \
--with-file-aio \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--with-http_flv_module \
--with-http_ssl_module
make && make install
-----------------------添加tomcat服務池----------------
vim /usr/local/nginx/conf/nginx.conf
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
upstream tomcat_server { //調度池
server 192.168.218.128:8080 weight=1;
server 192.168.218.129:8080 weight=1;
}
server {
listen 80;
.....省略
location / {
root html;
index index.html index.htm;
proxy_pass http://tomcat_server; //調度地址
}
/usr/local/nginx/sbin/nginx -t //驗證配置
五、啟動服務
/usr/local/nginx/sbin/nginx
service iptables stop
setenforce 0
實驗內容:
一、安裝壓縮包
二、安裝編譯環境
三、創建管理用戶
四、編譯安裝
-----------------------添加tomcat服務池----------------
五、啟動服務
六、驗證測試
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。