我正在尝试使用“空”配置文件启动haproxy(版本1.5.8 2014/10/31),然后我得到:
user@server:~$ sudo service haproxy start
[....] Starting haproxy: haproxy[ALERT] 126/120540 (7363) : Starting frontend GLOBAL: cannot bind UNIX socket [/run/haproxy/admin.sock]
尽管已启用:
user@server:~$ cat /etc/default/haproxy
# Set ENABLED to 1 if you want the init script to start haproxy.
ENABLED=1
配置文件:
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# Default ciphers to use on SSL-enabled listening sockets.
# For more information, see ciphers(1SSL).
ssl-default-bind-ciphers kEECDH+aRSA+AES:kRSA+AES:+AES256:RC4-SHA:!kEDH:!LOW:!EXP:!MD5:!aNULL:!eNULL
ssl-default-bind-options no-sslv3
defaults
log global
mode http
option httplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
有谁知道为什么它无法启动?
答案 0 :(得分:40)
Haproxy需要写入/run/haproxy/admin.sock
,但它不会为您创建目录。首先创建目录/run/haproxy/
或将stats socket
设置为其他路径。
答案 1 :(得分:0)
我遇到了这个问题,不得不删除HAProxy的/run/haproxy/admin.sock
文件才能成功重启。在我中止yum update
命令后,我只能认为它已损坏。哎呀!
答案 2 :(得分:0)
与此相结合。不了解最新的convo。
我在/ run文件夹中创建的所有内容在重启后都会消失。 如果我移至/ var / lib / haproxy而不是/ run / haproxy,则可以以root身份手动启动。 如果我重新启动,它将失败。不确定是否是因为它试图在重新启动时使用haproxy?如果我使用haproxy,则说该帐户不可用,但认为这是因为它已设置为nologin。
答案 3 :(得分:0)
在[RegularExpressionList("your pattern", ErrorMessage = "your message")]
public List<string> Animals { get; set; }
文件的global
部分中打开unis统计信息套接字
haproxy.cfg