3

我正在尝试在 Cygwin 上启动 HAProxy。当我这样做时,我得到以下响应:

$ /usr/local/sbin/haproxy -f /usr/local/sbin/haproxy.cfg
[ALERT] 313/180006 (4008) : cannot change UNIX socket ownership 
                           (/tmp/haproxy.socket). Aborting.
[ALERT] 313/180006 (4008) : [/usr/local/sbin/haproxy.main()] 
                            Some protocols failed to start 
                            their listeners! Exiting.

看起来这是由于我的配置文件中的以下行,当我撕开它时它会启动:

stats socket /tmp/haproxy.socket uid haproxy mode 770 level admin

整个配置:

global
log 127.0.0.1 local0 info
stats socket /tmp/haproxy.socket uid haproxy mode 770 level admin
maxconn 1000
daemon

defaults
log global
mode tcp
option tcplog
option dontlognull
retries 3
option redispatch
maxconn 1000
timeout connect 5s
timeout client 120s
timeout server 120s

listen rabbitmq_local_cluster 127.0.0.1:5555
mode tcp
balance roundrobin
server rabbit_0 127.0.0.1:5673 check inter 5000 rise 2 fall 3
server rabbit_1 127.0.0.1:5674 check inter 5000 rise 2 fall 3

listen private_monitoring 127.0.0.1:8100
mode http
option httplog
stats enable
stats uri /stats
stats refresh 5s

任何想法将不胜感激,谢谢!

4

2 回答 2

3

正如我所料,简单的答案。在有问题的行中引用了我的用户“haproxy”:

stats socket /tmp/haproxy.socket uid haproxy mode 770 level admin

在本地计算机上没有必要的权限。一旦设置好,它就可以正常启动。

于 2012-11-12T13:49:33.433 回答
1

很高兴知道它仍然可以在 cygwin 上运行,这是什么版本的 haproxy?我不知道 Windows BTW 支持 UNIX 套接字。或者也许他们是通过命名管道模拟的?

于 2012-11-26T18:28:37.150 回答