mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
DOC: management: Correct example reload command in the document
Current example is: `echo "reload" | socat /var/run/haproxy-master.sock` it will cause socat error: `exactly 2 addresses required (there are 1); use option "-h" for help` Correct working command is: `echo "reload" | socat /var/run/haproxy-master.sock stdin`
This commit is contained in:
parent
89da7cf5d5
commit
5a3fe9fcbf
1 changed files with 1 additions and 1 deletions
|
|
@ -3296,7 +3296,7 @@ has at least "operator" or "admin" privileges.
|
|||
|
||||
Example:
|
||||
|
||||
$ echo "reload" | socat /var/run/haproxy-master.sock
|
||||
$ echo "reload" | socat /var/run/haproxy-master.sock stdin
|
||||
|
||||
Note that a reload will close the connection to the master CLI.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue