我是靠谱客的博主 干净烤鸡,最近开发中收集的这篇文章主要介绍linux ha启动命令,haproxy(一)linux上安装和基本设置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

当前位置:我的异常网» Linux/Unix » haproxy(一)linux上安装和基本设置

haproxy(一)linux上安装和基本设置

www.myexceptions.net  网友分享于:2015-08-26  浏览:8次

haproxy(一)linux下安装和基本设置

haproxy(一)linux下安装和基本设置

首页

http://haproxy.1wt.eu/

中文资料

http://cn.haproxy.org/download/1.3/doc/configuration-cn.txt

参考WIKI

http://blog.csdn.net/cenwenchu79/archive/2009/08/04/4409343.aspx

一、haproxy的安装

下载得到文件

haproxy-1.3.20.tar.gz

解开压缩

tar zxvf haproxy-1.3.20.tar.gz

移动到工作目录

mv /usr/tmp/haproxy-1.3.20 /usr/local/haprox

转到工作目录

cd /usr/local/haproxy

编译

make TARGET=linux26

安装

make install

执行

haproxy

返回:

HA-Proxy version 1.3.20 2009/08/09

Copyright 2000-2009 Willy Tarreau

证明安装已经成功

二、haproxy的简单配置

vi haproxy.cfg

文件内容如下:

global

log 127.0.0.1   local0

maxconn 4096

chroot /usr/local/haproxy

uid 99

gid 99

daemon

nbproc 1

pidfile /usr/local/haproxy/logs/haproxy.pid

debug

#quiet

defaults

log     127.0.0.1       local3

mode    http

option httplog

option httpclose

option dontlognull

option forwardfor

option redispatch

retries 2

maxconn 2000

balance roundrobin

stats   uri     /haproxy-stats

contimeout      5000

clitimeout      50000

srvtimeout      50000

listen web_proxy 0.0.0.0:80

option httpchk GET /demo/ping.jsp

server s1 127.0.0.1:8080 weight 3 check

server s2 127.0.0.1:8081 weight 3 check

启动命令

haproxy -f haproxy.cfg

报错:

[root@localhost haproxy]# haproxy -f haproxy.cfg

[ALERT] 236/112258 (5538) : [haproxy.main()] Cannot create pidfile /usr/local/haproxy/logs/haproxy.pid

mkdir /usr/local/haproxy/logs 就可以了

访问:

http://192.168.95.129:80/haproxy-stats

调试启动命令:

haproxy -f haproxy.cfg -d

可以访问页面,但是页面显示两个S1,S2都是DOWN的。

三、配置TOMCAT测试应用

启动TOMCAT6.0-1 打开端口8080

启动TOMCAT6.0-2 打开端口8081

都部署上应用demo.war,里面只有两个文件,一个index.jsp,一个ping.jsp

index就显示各当前是哪个SERVER

pageEncoding="GB18030"%>

test demo 1

test demo 1

PING.JSP就是一个空白页面,让haproxy知道后台服务器还活着就行了

访问http://192.168.95.129/demo就可以随机访问TOMCAT6.0-1和TOMCAT6.0-2上的demo项目了

文章评论

最后

以上就是干净烤鸡为你收集整理的linux ha启动命令,haproxy(一)linux上安装和基本设置的全部内容,希望文章能够帮你解决linux ha启动命令,haproxy(一)linux上安装和基本设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部