tomcat之nginx调度
Posted maxuebin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat之nginx调度相关的知识,希望对你有一定的参考价值。
# :安装nginx [root@nginx ~]# yum install nginx -y #配置 [root@nginx ~]# vim /etc/nginx/nginx.conf upstream tomcats server node1.magedu.com:8080; server node2.magedu.com:8080; server listen 80 default_server; listen [::]:80 default_server; server_name _; root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location / proxy_pass http://tomcats;
#:修改tomcat配置 [root@node1 ~]# vim /usr/local/tomcat/conf/server.xml </Host> <Host name="node1.magedu.com" appBase="/data/webapps"> </Host> <Engine name="Catalina" defaultHost="node1.magedu.com">
以上是关于tomcat之nginx调度的主要内容,如果未能解决你的问题,请参考以下文章
Nginx+Keepalived+Tomcat+MySQL负载均衡& 通过nginx调度器访问Tom
纯干货CentOS7上基于nginx搭建tomcat9.0版本的负载均衡群集管理