Command - Run
Start the message broker and connect to a FoxMQ cluster.
Usage: foxmq run <--secret-key <SECRET_KEY>|--secret-key-file <SECRET_KEY_FILE>> [CONFIG_DIR]
Windows users: Traffic on the loopback interface (localhost
/127.0.0.1
) does not connect to applications listening on 0.0.0.0
. Use 127.0.0.1
IP to listen for loopback connections.
Options listing
--log
,-l
Set the format of log output.Default:
full
Options:
full
,compact
,pretty
,json
json
is structured and is intended for usage by tools that process structured logs in production environments, and is not optimized for human readability.
Example:
--log=json
May lead to a message such as (note: JSON output is not prettiefied, this is just an example):
--mqtt-addr
,-L
The TCP socket address to listen for MQTT (non-TLS) connections from clients.Default:
0.0.0.0:1883
--cluster-addr
,-C
The UDP socket address to listen for cluster connections from other FoxMQ brokers.Default:
0.0.0.0:19793
--allow-anonymous-login
Allow clients to authenticate without providing user credentials
Default:
false
(not present)
--silent-connect-errors
Don't respond to mqttCONNECT
packets if the result would be an error. This can be used to avoid advertising that an MQTT broker is running on the given port, which makes it harder to categorize in a port scanning attack and identify as a potential target. By default, a response is sent to the client detailing the reason why the handshake failed. When enabled, the error is simply logged atDEBUG
level, and the socket is silently closed.Default:
false
(not present)
--secret-key
,-k
Read the P-256 secret key used to identify this broker in the cluster from hex encoded DER. If--tls-key-file
is not provided andmqtts
is enabled, this or--secret-key-file
will be used by default.env:
SECRET_KEY=
Conflicts:
--secret-key-file
--secret-key-file
,-f
Read the PEM-encoded P-256 secret key used to identify this broker in the cluster from a file.env:
SECRET_KEY_FILE=
Conflicts:
--secret-key
--mqtts
Enable listening for MQTT-over-TLS connections on a separate socket (0.0.0.0:8883
by default)--mqtts-addr
The TCP socket address to listen for MQTT-over-TLS (mmqts
) connections from clients.Default:
0.0.0.0:8883
--server-name
The domain name to report for Server Name Identification (SNI) in TLSDefault:
foxmq.local
--tls-key-file
Override the secret key used for TLS handshakes.Default: The main secret key (
--secret-key
/seecret-key-file
)
--tls-cert-file
Path to the X.509 certificate to use for TLS.Default: A certificate self-signed with TLS key (
--tls-key-file
or the main key)
Example
Refer to or for more in-depth examples.
Last updated