mqttui-publish(1) General Commands Manual mqttui-publish(1)

mqttui-publish - Publish a value quickly

mqttui publish [-r|--retain] [-v|--verbose] [-b|--broker] [-u|--username] [--password] [-i|--client-id] [--client-cert] [--client-key] [--insecure] [-h|--help] <TOPIC> [PAYLOAD]

Publish a value quickly

Publish the MQTT message retained
May also be specified with the MQTTUI_RETAIN environment variable.
Show full MQTT communication
URL which represents how to connect to the MQTT broker.

Examples: `mqtt://localhost` `mqtt://localhost:1883` `mqtts://localhost` `mqtts://localhost:8883` `ws://localhost/path` `ws://localhost:9001/path` `wss://localhost/path` `wss://localhost:9001/path`

May also be specified with the MQTTUI_BROKER environment variable.
Username to access the mqtt broker.

Anonymous access when not supplied.

May also be specified with the MQTTUI_USERNAME environment variable.
Password to access the mqtt broker.

Consider using a connection with TLS to the broker. Otherwise the password will be transported in plaintext.

Passing the password via command line is insecure as the password can be read from the history! You should pass it via environment variable.

May also be specified with the MQTTUI_PASSWORD environment variable.
Specify the client id to connect with
May also be specified with the MQTTUI_CLIENTID environment variable.
Path to the TLS client certificate file.

Used together with --client-key to enable TLS client authentication. The file has to be a DER-encoded X.509 certificate serialized to PEM.

May also be specified with the MQTTUI_CLIENT_CERTIFICATE environment variable.
Path to the TLS client private key.

Used together with --client-cert to enable TLS client authentication. The file has to be a DER-encoded ASN.1 file in PKCS#8 form serialized to PEM.

May also be specified with the MQTTUI_CLIENT_PRIVATE_KEY environment variable.
Allow insecure TLS connections
Print help (see a summary with '-h')
<TOPIC>
Topic to publish to
[PAYLOAD]
Payload to be published.

Reads from stdin when not specified. This allows file content to be sent via pipes like this (bash):

`mqttui publish some/topic </etc/hostname`

`cowsay "I was here" | mqttui publish some/topic`

publish