Thursday, March 28, 2024
ExplainerInternet of ThingsIoT ProtocolsIoT Software&ToolsTutorials/DIY

Using URIs to connect to a MQTT server

URIs are useful to provide serval pieces of information in a single compact string. They can be used to convey all the information required to connect to a MQTT server.

The format is like this:

mqtt[s]://[username][:password]@host.domain[:port]

A typical use for this is to provide the details of a MQTT server in an environment variable. The suggested name for this variable is ‘MQTT_SERVER’.

Scheme

The scheme part describes the protocol to use to communicate with the server. It can either be ‘mqtt’ for unencrypted communication or ‘mqtts’ to wrap up to MQTT protocol in a secure TLS encrypted connection.

Some implementations may also support the ‘tcp’ and ‘ssl’ scheme names.

Username

The second section of the URI is the username to be put into the CONNECT packet, send directly after opening the socket. If no username is given or it is an empty string, then the user name flag should not be set in the CONNECT packet.

Password

Optionally a password may be given in the URI. This is also passed into the CONNECT packet. A colon separates the username and password. If the username is an empty string, then the password should still be sent.

Host and Domain

Other than the scheme, this the only required component of a MQTT URI. This is the DNS name or IP address of the MQTT server to connect to.

Port

The TCP port of the MQTT server to connect to. If no port is given, then the default port number, 1883, is used for the ‘mqtt’ scheme and port 8883 is used by default for the ‘mqtts’ scheme.


I hope you like this post. Do you have any questions? Leave a comment down below! Thanks for reading. If you like this post probably you might like my next ones, so please support me by subscribing my blog.

Explore Some more MQTT articles :


 

Harshvardhan Mishra

Hi, I'm Harshvardhan Mishra. Tech enthusiast and IT professional with a B.Tech in IT, PG Diploma in IoT from CDAC, and 6 years of industry experience. Founder of HVM Smart Solutions, blending technology for real-world solutions. As a passionate technical author, I simplify complex concepts for diverse audiences. Let's connect and explore the tech world together! If you want to help support me on my journey, consider sharing my articles, or Buy me a Coffee! Thank you for reading my blog! Happy learning! Linkedin

Leave a Reply

Your email address will not be published. Required fields are marked *