Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<add key="ListeningPort" value="1883"/>


Running When you run the MQTT Broker with the default configuration (without changing the .config file), it will assume the parameters below:

  • Listening port: 1883
  • UserNameAndPassword1: none
  • CertificateFile: nonenone   
  • CertificatePassword: none

...

  • ListeningPort: Server listening port. Default is 1883 if it is not
  • CertificateFile: Certificate file to use in the SSL
  • CertificatePassword: Certificate password to use in the SSL
  • SslProtocols: SSL protocol
  • UserNameAndPassword1: UserName and password required to access Broker, following using the syntax UserName;Password.

...

The password can be a string (no encryption) or an encrypted password. For encrypting To encrypt a password you can use in any coder (ex. Visual Studio), use the following code:

Code Block
string Encrypted_password = T.Library.StringUtilities.ToHex(string <password>);

...