213123 发表于 2016-4-13 12:55:17

haproxy启动故障之-"Proxy 'http_gsres': in multi-process mode."

# /usr/local/haproxy/sbin/haproxy -f /usr/local/haproxy/conf/haproxy.cfg
102/151915 (11151) : Proxy 'http_gsres': in multi-process mode, stats will be limited to process assigned to the current request.
解决方法:
在配置文件中加入 bind-process 2 ,让它跑在两颗CPU上 ,就不会出现错误讯息了。

frontend http_gsres
         bind *:8090
         mode http
         option httplog
         logglobal
         bind-process    2    #此行为上面加入到配置文件当中的
         default_backend www_gsres

再次启动haproxy一切正常!

页: [1]
查看完整版本: haproxy启动故障之-"Proxy 'http_gsres': in multi-process mode."