Nginx反向代理搭建Tomcat
实验步骤:
创新互联是一家专注于网站设计制作、做网站与策划设计,吉首网站建设哪家好?创新互联做网站,专注于网站建设10余年,网设计领域的专业建站公司;建站业务涵盖:吉首等地区。吉首做网站价格咨询:13518219792
一、安装压缩包
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服务池----------------
五、启动服务
六、验证测试
分享题目:Nginx反向代理搭建Tomcat
当前网址:http://scyanting.com/article/jopdhs.html