apache安裝 簡單配置負載均衡和會話保持

2021-09-02 08:47:05 字數 2894 閱讀 7868

首先安裝apache依賴的apr和apr-util

2.解壓 tar -xzvf apr-1.5.1.tar.gz

3.進入解壓目錄,依次執行

1

2

3

./configure

make

makeinstall

5.解壓 tar -xzvf apr-util-1.5.4.tar.gz

6.進入解壓目錄,依次執行

1

2

3

./configure--with-apr=/usr/local/apr

make

makeinstall

安裝apache

2.解壓 tar -xzvf httpd-2.4.10.tar.gz

3.進入解壓目錄,依次執行

1

2

3

4

./configure--prefix=/usr/local/apache--enable-so

make

makeinstall

bin/apachectl-k start#啟動apache,訪問顯示it works,表示安裝ok

4.新增服務

1

2

3

4

cpbin/apachectl/etc/rc.d/init.d/apache

vim/etc/rc.d/init.d/apache#編輯此檔案,新增一行:'#chkconfig: 2345  85 15',可放到第二行(#/bin/sh下面)

chkconfig --add apache#新增服務

service apache start#啟動服務

配置負載均衡和會話保持

1.修改apache_home/conf/httpd.conf,增加以下模組(取消注釋,如有其他依賴, 則相應取消注釋)

2修改apache_home/conf/httpd.conf,配置virtualhost實現負載均衡和會話保持,增加下面節點 1

2

3

4

5

6

7

8

9

10

11

12

<virtualhost*>

header add set-cookie "routeid=.%e;path=/" env=balancer_route_changed

proxyrequests off

proxypreservehost on

<proxybalancer://proxy>

order deny,allow

allow from all

balancermember  route=server1

balancermember  route=server2

centos7安裝nginx及簡單負載均衡配置

準備環境 centos7伺服器 1 安裝epel 源 更新源 yum update epel release 安裝epel源 yum install epel release y 2 安裝nginx 安裝nginx yum install nginx y 備註 安裝好的nginx已編譯好,無需mak...

Nginx的安裝配置和tomcat負載均衡

nginx是一款高效能的http 伺服器 反向 伺服器及電子郵件 imap pop3 伺服器。由俄羅斯的程式設計師igor sysoev所開發,官方測試nginx能夠支支撐5萬併發鏈結,並且cpu 記憶體等資源消耗卻非常低,執行非常穩定。1 http伺服器。nginx是乙個http服務可以獨立提供h...

Nginx配置upstream實現負載均衡

今天來實踐一下upstream的應用,環境如下 名稱server1 nginx server2 apache php sever3 apache php server4 nginx php ip192.168.10.3 192.168.10.4 192.168.10.5 192.168.10.6 目...