环境准备
1、准备一台nginx服务器 ip192.168.1.133 端口81
安装过程:
#首先安装依赖: yum -y install gcc-c++ yum -y install pcre pcre-devel yum -y install zlib zlib-devel yum -y install openssl openssl—devel #注意 : 安装nginx必须使用 root 用户安装 #创建一个nginx目录 mkdir /usr/local/src/nginx #进入到nginx目录 cd /usr/local/src/nginx #下载或上传安装包 wget http://nginx.org/download/nginx.tar.gz 或 rz上传 #解压安装包 tar -xvf nginx.tar.gz #进入到解压后的目录 cd nginx # 下面 才开始正式安装 #把nginx安装到指定用户的目录 mkdir -p /ucenter/soft/nginx #安装配置 prefix为安装目录 user为用户 group为 组 ./configure --prefix=/ucenter/soft/nginx --user=ucenter --group=ucenter #编译 make #安装 make install #在linux系统中由于非root用户不能占用80端口,所以需要使普通用户以root身份启动nginx。 cd /ucenter/soft/nginx/sbin #把soft文件下所有的文件所属者修改为ucener -r 表示递归 chown ucenter:ucenter ./soft/ -r #修改 ./nginx 的所属为root chown root nginx #让普通用户可以使用80端口,可以使用root权限启用nginx chmod u+s nginx #修改配置文件 在修改配置文件之前 ,要备份该文件 cd conf/ # 要注意nginx 的工作进程,一般根据cpu的核数去修改 vim nginx.conf #关闭防火墙,打开80端口 service iptables stop #启动nginx ./nginx #重启nginx ./nginx -s reload #关闭nginx ./nginx -s stop
准备一台tomcat服务器,先准备java环境,安装jdk步骤省略
然后分别安装3个tomcat 服务器ip地址:192.168.1.143,tomcat1 8080端口,tomcat2 8081端口,tomcat3 8082端口。
apache-tomcat-7.0.64/conf/server.xml配置文件修改这三个地方,这样端口就不会冲突
修改tomcat root目录下index.jsp,分别增加每个tomcat的标识,以及在页面上显示session id
<%--
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.
--%>
<%@ page session="true" %>
<%
java.text.simpledateformat sdf = new java.text.simpledateformat("yyyy");
request.setattribute("year", sdf.format(new java.util.date()));
request.setattribute("tomcaturl", "http://tomcat.apache.org/");
request.setattribute("tomcatdocurl", "/docs/");
request.setattribute("tomcatexamplesurl", "/examples/");
%>
<%=request.getservletcontext().getserverinfo() %>
${pagecontext.servletcontext.serverinfo}--8080
if you're seeing this, you've successfully installed tomcat. congratulations!
@@##@@
recommended reading:
security considerations how-to
manager application how-to
clustering/session replication how-to
server status
manager app
host manager
developer quick start
tomcat setup
first web application
realms & aaa
jdbc datasources
examples
servlet specifications
tomcat versions
managing tomcat
for security, access to the manager webapp is restricted.
users are defined in:
$catalina_home/conf/tomcat-users.xml
in tomcat 7.0 access to the manager application is split between
different users. read more...
release notes
changelog
migration guide
security notices
documentation
tomcat 7.0 documentation
tomcat 7.0 configuration
tomcat wiki
find additional important configuration information in:
$catalina_home/running.txt
developers may be interested in:
- tomcat 7.0 bug database
- tomcat 7.0 javadocs
- release notes0
getting help
release notes1 and release notes2
the following mailing lists are available:
-
release notes3
important announcements, releases, security vulnerability notifications. (low volume). -
release notes4
user support and discussion -
release notes5
user support and discussion for release notes6 -
release notes7
development mailing list, including commit messages
other downloads
- release notes8
- release notes9
- changelog0
- changelog1
other documentation
- changelog2
- changelog3
- changelog4
- changelog1
get involved
- changelog6
- changelog7
- release notes2
- changelog9
miscellaneous
- migration guide0
- migration guide1
- migration guide2
- migration guide3
apache software foundation
- migration guide4
- migration guide5
- migration guide6
- migration guide7
copyright ©1999-${year} apache software foundation. all rights reserved








