vi /etc/profile
最后增加
#set environment for JDK export JAVA_HOME=/usr/java/jdk1.7.0_51 export CLASSPATH=.:$JAVA_HOME/lib:$CLASSPATH export PATH=$JAVA_HOME/bin:$PATH
3.配置完成之后,自己验证命令 javac和java
4.tar -zxvf apache-tomcat-7.0.52.tar.gz 解压之后copy一份
5.cp -r apache-tomcat-7.0.52 apache-tomcat-7.0.53 因为是同一台电脑,需要改动其中1台tomcat的端口信息
6. 因为我安装在 /usr/local下面,可以用下面命令开启和关闭,验证tomcat是否正常启动 也可以通过如下命令查看 ps -ef | grep java
/usr/local/apache-tomcat-7.0.52/bin/shutdown.sh
/usr/local/apache-tomcat-7.0.53/bin/shutdown.sh
/usr/local/apache-tomcat-7.0.52/bin/startup.sh
/usr/local/apache-tomcat-7.0.53/bin/startup.sh
7.下面安装nginx,我安装nginx方式比较简单,使用yum方式安装,如果有任何问题,可以跟我说,我会马上回复你
redhat 因为yum无法用,但是我重新改变了一下,可以查看如下链接
http://blog.csdn.net/zcyhappy1314/article/details/17580943
但是有一个地方需要改变一下,就是链接地址
wget http://tel.mirrors.163.com/centos/6/os/i386/Packages/yum-3.2.29-40.el6.centos.noarch.rpm
wget http://tel.mirrors.163.com/centos/6/os/i386/Packages/yum-metadata-parser-1.1.2-16.el6.i686.rpm
wget http://tel.mirrors.163.com/centos/6/os/i386/Packages/yum-plugin-fastestmirror-1.1.30-14.el6.noarch.rpm
wget http://tel.mirrors.163.com/centos/6/os/i386/Packages/python-iniparse-0.3.1-2.1.el6.noarch.rpm
8.nginx 配置信息如下
user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { upstream tomcat_cluster{ server 192.168.1.167:8080; server 192.168.1.167:8081; } server { listen 80; server_name 192.168.1.167; server_name_in_redirect off; proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location / { proxy_pass http://tomcat_cluster; #转向tomcat处理 } location ~ \.(jsp|do|action)$ { #所有jsp页面以及do/action请求均交由tomcat处理 proxy_pass http://tomcat_cluster; #转向tomcat处理 } location ~ \.(htm|html|gif|jpg|jpeg|png|ico|rar|css|js|zip|txt|flv|swf|doc|ppt|xls|pdf)$ { root /home/leiwente/webapp/ROOT; expires 30h; } } include /etc/nginx/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 /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf; }
9.先删除两个tomcat下面ROOT下面所有的文件,在其中一个tomcat新建 vi test.jsp
SessionID:<%=session.getId()%> <BR> SessionIP:<%=request.getServerName()%> <BR> SessionPort:<%=request.getServerPort()%> <% out.println("This is Tomcat Server 111111"); %>
在另外一个tomcat 新建 vi test.jsp
SessionID:<%=session.getId()%> <BR> SessionIP:<%=request.getServerName()%> <BR> SessionPort:<%=request.getServerPort()%> <% out.println("This is Tomcat Server 222222"); %>
14.每一个tomcat中还需要配置context.xml还需要配置manager
<?xml version='1.0' encoding='utf-8'?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- The contents of this file will be loaded for each web application --> <Context> <!-- Default set of monitored resources --> <WatchedResource>WEB-INF/web.xml</WatchedResource> <!-- Uncomment this to disable session persistence across Tomcat restarts --> <!-- <Manager pathname="" /> --> <Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager" memcachedNodes="n1:192.168.1.167:11211" sticky="false" sessionBackupAsync="false" requestUriIgnorePattern=".*\.(ico|png|gif|jpg|css|js)$" transcoderFactoryClass="de.javakaffee.web.msm.serializer.kryo.KryoTranscoderFactory" /> <!-- Uncomment this to enable Comet connection tacking (provides events on session expiration as well as webapp lifecycle) --> <!-- <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" /> --> </Context> ~