服務=====Nginx+Tomcat 負載均衡羣集


####實驗環境  centos 6.5html

####須要的安裝包java

jdk-7u65-linux-x64.gzlinux

apache-tomcat-7.0.54.tar.gznginx

nginx-1.6.0.tar.gzweb


兩臺tomcat服務器,一臺Nginx 服務器apache

tomcat1 的ip 192.168.1.100:8080bootstrap

tomcat2 的ip 192.168.1.101:8080vim

Nginx 的ip 192.168.1.102centos


注:試驗中必須關閉防火牆,selinux和安裝了gcc的環境瀏覽器


=========================tomcat1 的配置=============================

39634f5896cf09d80f5ef8a3b69e121c.png-wh_


(1)安裝JDK,配置JAVA 環境 

[root@localhost ~]# tar zxvf jdk-7u65-linux-x64.gz

[root@localhost ~]# mv jdk1.7.0_65/ /usr/local/java

[root@localhost ~]# vim /etc/profile.d/java.sh   #在此路徑下寫一個腳本,內容以下    

     export JAVA_HOME=/usr/local/java

     export PATH=$PATH:$JAVA_HOME/bin

 

[root@localhost ~]# source /etc/profile.d/java.sh   

(2)安裝配置Tomcat

[root@localhost ~]# tar xf apache-tomcat-7.0.54.tar.gz 

[root@localhost ~]# mv apache-tomcat-7.0.54 /usr/local/tomcat7

[root@localhost ~]# /usr/local/tomcat7/bin/startup.sh   #啓動tomcat,以下所示

Using CATALINA_BASE:   /usr/local/tomcat7

Using CATALINA_HOME:   /usr/local/tomcat7

Using CATALINA_TMPDIR: /usr/local/tomcat7/temp

Using JRE_HOME:        /usr/local/java

Using CLASSPATH:       /usr/local/tomcat7/bin/bootstrap.jar:/usr/local/tomcat7/bin/tomcat-juli.jar

Tomcat started.

You have new mail in /var/spool/mail/root

(3)打開瀏覽器訪問測試,http://  192.168.1.100:8080,出現以下界面則成功

3ebb44cffb48112c8b889986302e9923.png

(4)創建JAVA的WEB 站點

[root@localhost ~]# mkdir -pv /web/webapp1   #建立web頁面的目錄

[root@localhost ~]# vim /usr/local/tomcat7/conf/server.xml  #修改配置文件,指定路徑,添加×××區域內容

內容以下:

  <Context docBase="/web/webapp1" path="" reloadable="false">

            </Context>

b3e79942765d20965ceca3c1ad9b9d8c.png

[root@localhost ~]# vim /web/webapp1/index.jsp   #添加測試頁面

內容以下:

[root@localhost java]# cat /web/webapp1/index.jsp 

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<html>

 <head>

  <title>JSP test1 page</title>

 </head>

 <body>

   <% out.println("welcome to test site,http://www.test1.com");%>

 </body>

</html>

(5)驗證測試成功

打開瀏覽器,輸入http://192.168.1.100:8080,出現以下所示

db1b527b51ffee7fd7cc7a901f454782.png

=========================Tomcat2 的配置=====================

Tomcat2 的配置方法基本同tomcat1,其中包括

(1)關閉iptables 防火牆

(2)安裝JDK, 配置JAVA 環境,版本與Tomcat1 server 保持一致

(3)安裝配置Tomcat,版本與Tomcat1 server 保持一致

(4)建立/web/webapp1 目錄,修改Tomcat配置文件server.xml,將網站文件目錄更改到/web/webapp1/路徑下

(5)在/web/webapp1/路徑下創建Index.jsp,爲了區別測試頁面index.jsp 的內容更改以下

[root@localhost ~]# cat  /web/webapp1/index.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<html>

 <head>

  <title>JSP test2 page</title>

 </head>

 <body>

   <% out.println("welcome to test site,http://www.test2.com");%>

 </body>

</html>


==========================Nginx 的配置==============================

[root@localhost 桌面]# yum -y install prce-devel zlib-devel openssl-devel

[root@localhost 桌面]# groupadd www

[root@localhost 桌面]# useradd -g www www -s /bin/false

root@localhost 桌面]# mv nginx-1.6.0.tar.gz ~

[root@localhost 桌面]# cd ~

[root@localhost ~]# tar zxvf nginx-1.6.0.tar.gz 

[root@localhost ~]# cd nginx-1.6.0

[root@localhost nginx-1.6.0]# ./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

[root@localhost nginx-1.6.0]# make && make install

安裝完成後編輯配置文件(前面爲配置文件的行數,紅色部分爲添加內容)

[root@localhost init.d]# vim /usr/local/nginx/conf/nginx.conf


 32     #gzip  on;

 33     upstream tomcat_server {

 34         server 192.168.1.100:8080 weight=1;

 35         server 192.168.1.101:8080 weight=2;

 36 

 37             }


 

 43 

 44         #access_log  logs/host.access.log  main;

 45 

 46         location / {

 47             root   html;

 48             index  index.html index.htm;

 49             proxy_pass   http://tomcat_server;

 50         }

 51 

 52         #error_page  404              /404.html;


爲了啓動方便寫一個Nginx 的腳本,並把它放在環境變量中,腳本內容以下

[root@localhost init.d]# vim /etc/init.d/nginx

#!/bin/bash

#chkconfig: - 99 20
#description: Nginx Server Control Script

PROG="/usr/local/nginx/sbin/nginx"
PIDF="/usr/local/nginx/logs/nginx.pid"
case "$1" in 
 start)
  $PROG
  ;;
  stop)
   kill -s QUIT $(cat $PIDF)
  ;;
  restart)
   $0 stop
   $0 start
  ;;
  reload)
  kill -s HUP $(cat $PIDF)
  ;;
  *)
   echo "Usage: $0 (start|stop|restart|reload)"
   exit 1
esac
exit 0

[root@localhost init.d]# echo "PATH=$PATH:/etc/init.d/" >> /etc/profile

[root@localhost init.d]# . /etc/profile

[root@localhost init.d]# nginx restart     #重啓Nginx

測試配置文件是否正確

[root@localhost init.d]# /usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful


從新啓動nginx 

[root@localhost init.d]# nginx restart 

[root@localhost init.d]# netstat -anpt | grep nginx

tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      40041/nginx 

測試負載均衡效果

打開瀏覽器輸入http://192.168.1.102

不斷刷新瀏覽器測試發現權重相同,頁面會反覆在兩個頁面來回切換。



注:若是是虛擬機調到同一個wmnat中,且配置ip地址是永久的,儘可能不要配臨時的容易出錯

相關文章
相關標籤/搜索