标签:chmod apr server 开放 编写 chroot listen star tumblr
HAProxy是一个使用C语言编写的自由及开放源代码软件[1],其提供高可用性、负载均衡,以及基于TCP和HTTP的应用程序代理。./configure \
--prefix=/usr/local/nginx \
--user=nginx \
--group=nginx \
make && make install
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
echo “this is server 01” > /usr/local/nginx/html/index.html
nginx
同样方式再搭建一台网站服务器
echo “this is server 02” > /usr/local/nginx/html/index.html
cp examples/haproxy.init /etc/init.d/haproxy
chmod 755 /etc/init.d/haproxy
chkconfig –add haproxy
ln -s /usr/local/sbin/haproxy /usr/sbin/haproxy
systemctl start haproxy
标签:chmod apr server 开放 编写 chroot listen star tumblr
原文地址:http://blog.51cto.com/13842738/2166012