linux 下nginx的安装 与 tomcat集群

1.安装依赖包

yum install gcc
yum install pcre-devel
yum install zlib zlib-devel
yum install openssl openssl-devel

//一键安装上面四个依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel


2.下载并解压安装包

//创建一个文件夹

cd /usr/local
mkdir nginx
cd nginx


//下载tar包

wget http://nginx.org/download/nginx-1.13.7.tar.gz
tar -xvf nginx-1.13.7.tar.g


3.安装nginx

//进入nginx目录
cd /usr/local/nginx
//执行命令
./configure
//执行make命令
make
//执行make install命令
make install

#查看nginx版本
/usr/local/nginx/sbin/nginx -v


4.配置nginx.conf

# 打开配置文件
vi /usr/local/nginx/conf/nginx.conf
http {
	upstream nginxMycrm{
   	 server 172.16.10.87:8000; #87服务器地址
   	 server 172.16.10.88:8080; #88服务器地址
	} 	
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       8090;#修改端口号
        server_name  mycrm;#服务访问域名

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
	    proxy_pass http://nginxMycrm; #配置方向代理地址,与第二行的名字保持一致
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
	error_log    logs/error_www.log    error;    #(这是查看错误日志文件的位置)

5.nginx的停止与启动

启动方式一 nginx的sbin目录下
 ./nginx -s reload
启动方式二
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

停止nginx nginx的sbin目录下
./nginx -s stop 


查看nginx进程是否启动
ps -ef|grep nginx

停止
kill 进程

直接强制杀死nginx:
pkill -9 nginx

6,访问

访问nginx

linux 下nginx的安装 与 tomcat集群_第1张图片

访问集群项目

 http://172.16.10.88:8090/mycrm

linux 下nginx的安装 与 tomcat集群_第2张图片
 注意:这里真正的集群要用到统一验证登陆,比如用redis存session等登陆信息,或者用ip_hash策略轮寻,保证同一个ip用户访问到的是同一个tomcat。生产环境建议用redis,虽然ip_hash容易配置

轮寻策略介绍:https://blog.csdn.net/zhaofuqiangmycomm/article/details/88622627

参考:

http://www.runoob.com/linux/nginx-install-setup.html

https://blog.csdn.net/t8116189520/article/details/81909574

你可能感兴趣的:(nginx)