当前位置: 首页 > 工具软件 > Pound > 使用案例 >

Linux Pound 负载均衡 简介

蒙光华
2023-12-01

 资料:http://d.hatena.ne.jp/h-yano/20070720/1184918054

1.linux上安装java环境,tomcat,并发布项目(开启SSL)。

2.安装openssl,生成证书文件:pound.pem

3.安装Pound负载均衡。

配置文件例:pound.cfg

User            "nobody"
Group           "nobody"

#LogFacility    local1

ListenHTTPS
        cert            "/usr/local/etc/pound.pem"
        Address         192.168.2.21
        Port            443
End

ListenHTTP
        Address          192.168.2.21
        Port             80
End



Service
        BackEnd
                Address 192.168.2.21
                Port    8080
                TimeOut 3600
        End

        Session
                TYPE    COOKIE
                TTL     1800
                ID      "JSESSIONID"
        End
End

http://192.168.2.21/xxx/xxxx......访问服务器即可。

其他资料:http://www.atmarkit.co.jp/flinux/rensai/apache2_05/apache05c.html

 

 类似资料: