MongoDB Based Device Registry Configuration
The MongoDB based Device Registry component provides an implementation of Eclipse Hono™’s Device Registration, Credentials and Tenant APIs. Protocol adapters use these APIs to determine a device’s registration status, e.g. if it is enabled and if it is registered with a particular tenant, and to authenticate a device before accepting any data for processing from it. In addition to the above, this Device Registry also provides an implementation of Device Registry Management APIs for managing tenants, registration information and credentials of devices.
The registry is implemented as a Quarkus application, using a MongoDB database as the persistence store. It can be run either directly from the command line or by means of starting the corresponding Docker image created from it.
The registry is compatible and known to work with following MongoDB versions:
The registry had originally been implemented as a Spring Boot application. That variant has been removed in Hono 2.0.0.
Service Configuration
The following table provides an overview of the configuration variables and corresponding system properties for configuring the MongoDB based Device Registry.
OS Environment Variable Java System Property |
Mandatory | Default | Description |
---|---|---|---|
HONO_CREDENTIALS_SVC_CACHEMAXAGE hono.credentials.svc.cacheMaxAge |
no | 180 |
The maximum period of time (seconds) that information returned by the service’s operations may be cached for. |
HONO_CREDENTIALS_SVC_COLLECTIONNAME hono.credentials.svc.collectionName |
no | credentials |
The name of the MongoDB collection where the server stores credentials of devices. |
HONO_CREDENTIALS_SVC_ENCRYPTIONKEYFILE hono.credentials.svc.encryptionKeyFile |
no | - | The path to the YAML file that encryption keys should be read from. |
HONO_CREDENTIALS_SVC_HASHALGORITHMSWHITELIST hono.credentials.svc.hashAlgorithmsWhitelist |
no | empty |
An array of supported hashing algorithms to be used with the hashed-password type of credentials. When not set, all values will be accepted. |
HONO_CREDENTIALS_SVC_MAXBCRYPTCOSTFACTOR hono.credentials.svc.maxBcryptCostFactor |
no | 10 |
The maximum cost factor that is supported in password hashes using the BCrypt hash function. This limit is enforced by the device registry when adding or updating corresponding credentials. Increasing this number allows for potentially more secure password hashes to be used. However, the time required to compute the hash increases exponentially with the cost factor. |
HONO_MONGODB_CONNECTIONSTRING hono.mongodb.connectionString |
no | - | The connection string used by the Device Registry application to connect to the MongoDB database. If this property is set, it overrides the other MongoDB connection settings. See Connection String URI Format for more information. |
HONO_MONGODB_CONNECTIONTIMEOUTINMS hono.mongodb.connectionTimeoutInMs |
no | 10000 |
The time in milliseconds to attempt a connection before timing out. |
HONO_MONGODB_DBNAME hono.mongodb.dbName |
no | - | The name of the MongoDB database that should be used by the Device Registry application. |
HONO_MONGODB_HOST hono.mongodb.host |
no | localhost |
The host name or IP address of the MongoDB instance. |
HONO_MONGODB_PORT hono.mongodb.port |
no | 27017 |
The port that the MongoDB instance is listening on. |
HONO_MONGODB_PASSWORD hono.mongodb.password |
no | - | The password to use for authenticating to the MongoDB instance. |
HONO_MONGODB_SERVERSELECTIONTIMEOUTINMS hono.mongodb.serverSelectionTimeoutInMs |
no | 1000 |
The time in milliseconds that the mongo driver will wait to select a server for an operation before raising an error. |
HONO_MONGODB_USERNAME hono.mongodb.username |
no | - | The user name to use for authenticating to the MongoDB instance. |
HONO_REGISTRY_AMQP_BINDADDRESS hono.registry.amqp.bindAddress |
no | 127.0.0.1 |
The IP address of the network interface that the secure AMQP port should be bound to. See Port Configuration below for details. |
HONO_REGISTRY_AMQP_CERTPATH hono.registry.amqp.certPath |
no | - | The absolute path to the PEM file containing the certificate that the server should use for authenticating to clients. This option must be used in conjunction with HONO_REGISTRY_AMQP_KEYPATH .Alternatively, the HONO_REGISTRY_AMQP_KEYSTOREPATH option can be used to configure a key store containing both the key as well as the certificate. |
HONO_REGISTRY_AMQP_INSECUREPORT hono.registry.amqp.insecurePort |
no | - | The insecure port the server should listen on for AMQP 1.0 connections. See Port Configuration below for details. |
HONO_REGISTRY_AMQP_INSECUREPORTBINDADDRESS hono.registry.amqp.insecurePortBindAddress |
no | 127.0.0.1 |
The IP address of the network interface that the insecure AMQP port should be bound to. See Port Configuration below for details. |
HONO_REGISTRY_AMQP_INSECUREPORTENABLED hono.registry.amqp.insecurePortEnabled |
no | false |
If set to true the server will open an insecure port (not secured by TLS) using either the port number set via HONO_REGISTRY_AMQP_INSECUREPORT or the default AMQP port number (5672 ) if not set explicitly.See Port Configuration below for details. |
HONO_REGISTRY_AMQP_KEYPATH hono.registry.amqp.keyPath |
no | - | The absolute path to the (PKCS8) PEM file containing the private key that the server should use for authenticating to clients. This option must be used in conjunction with HONO_REGISTRY_AMQP_CERTPATH . Alternatively, the HONO_REGISTRY_AMQP_KEYSTOREPATH option can be used to configure a key store containing both the key as well as the certificate. |
HONO_REGISTRY_AMQP_KEYSTOREPASSWORD hono.registry.amqp.keyStorePassword |
no | - | The password required to read the contents of the key store. |
HONO_REGISTRY_AMQP_KEYSTOREPATH hono.registry.amqp.keyStorePath |
no | - | The absolute path to the Java key store containing the private key and certificate that the server should use for authenticating to clients. Either this option or the HONO_REGISTRY_AMQP_KEYPATH and HONO_REGISTRY_AMQP_CERTPATH options need to be set in order to enable TLS secured connections with clients. The key store format can be either JKS or PKCS12 indicated by a .jks or .p12 file suffix respectively. |
HONO_REGISTRY_AMQP_NATIVETLSREQUIRED hono.registry.amqp.nativeTlsRequired |
no | false |
The server will probe for OpenSSL on startup if a secure port is configured. By default, the server will fall back to the JVM’s default SSL engine if not available. However, if set to true , the server will fail to start at all in this case. |
HONO_REGISTRY_AMQP_PORT hono.registry.amqp.port |
no | 5671 |
The secure port that the server should listen on for AMQP 1.0 connections. See Port Configuration below for details. |
HONO_REGISTRY_AMQP_RECEIVERLINKCREDIT hono.registry.amqp.receiverLinkCredit |
no | 100 |
The number of credits to (initially) flow to a client connecting to one of the registry’s endpoints. |
HONO_REGISTRY_AMQP_SECUREPROTOCOLS hono.registry.amqp.secureProtocols |
no | TLSv1.3,TLSv1.2 |
A (comma separated) list of secure protocols (in order of preference) that are supported when negotiating TLS sessions. Please refer to the vert.x documentation for a list of supported protocol names. |
HONO_REGISTRY_AMQP_SUPPORTEDCIPHERSUITES hono.registry.amqp.supportedCipherSuites |
no | - | A (comma separated) list of names of cipher suites (in order of preference) that are supported when negotiating TLS sessions. Please refer to JSSE Cipher Suite Names for a list of supported names. |
HONO_REGISTRY_HTTP_AUTH_COLLECTIONNAME hono.registry.http.auth.collectionName |
no | user |
The name of the Mongo collection that contains the user accounts that are authorized to access the HTTP endpoint. Please refer to the vert.x documentation for details. |
HONO_REGISTRY_HTTP_AUTH_HASHALGORITHM hono.registry.http.auth.hashAlgorithm |
no | PBKDF2 |
The name of the property that contains the algorithm to be used for creating the password hash. Valid values are PBKDF2 and SHA512 . Please refer to the vert.x documentation for details. |
HONO_REGISTRY_HTTP_AUTH_PASSWORDFIELD hono.registry.http.auth.passwordField |
no | password |
The name of the property that contains an account’s password. Please refer to the vert.x documentation for details. |
HONO_REGISTRY_HTTP_AUTH_SALTFIELD hono.registry.http.auth.saltField |
no | salt |
The name of the property that contains a password hash’s salt (if the HONO_REGISTRY_HTTP_AUTH_SALTSTYLE has value COLUMN ). Please refer to the vert.x documentation for details. |
HONO_REGISTRY_HTTP_AUTH_SALTSTYLE hono.registry.http.auth.saltStyle |
no | COLUMN |
The strategy to use for storing password salt values. Please refer to the vert.x documentation for details. |
HONO_REGISTRY_HTTP_AUTH_USERNAMEFIELD hono.registry.http.auth.usernameField |
no | username |
The name of the property that contains an account’s user name. Please refer to the vert.x documentation for details. |
HONO_REGISTRY_HTTP_AUTHENTICATIONREQUIRED hono.registry.http.authenticationRequired |
no | true |
If set to true the HTTP endpoint of the Device Registry requires clients to authenticate when connecting to the Device Registry. The MongoDB based Device Registry currently supports basic authentication with user credentials being read from a Mongo collection defined by HONO_REGISTRY_HTTP_AUTH_COLLECTIONNAME . For more information on how to manage users please refer to Mongo Auth Provider. |
HONO_REGISTRY_HTTP_BINDADDRESS hono.registry.http.bindAddress |
no | 127.0.0.1 |
The IP address of the network interface that the secure HTTP port should be bound to. See Port Configuration below for details. |
HONO_REGISTRY_HTTP_CERTPATH hono.registry.http.certPath |
no | - | The absolute path to the PEM file containing the certificate that the server should use for authenticating to clients. This option must be used in conjunction with HONO_REGISTRY_HTTP_KEYPATH .Alternatively, the HONO_REGISTRY_HTTP_KEYSTOREPATH option can be used to configure a key store containing both the key as well as the certificate. |
HONO_REGISTRY_HTTP_DEVICEIDPATTERN hono.registry.http.deviceIdPattern |
no | ^[a-zA-Z0-9-_\.:]+$ |
The regular expression to use to validate device ID. Please refer to the java pattern documentation. |
HONO_REGISTRY_HTTP_IDLETIMEOUT hono.registry.http.idleTimeout |
no | 60 |
The idle timeout in seconds. A connection will timeout and be closed if no data is received or sent within the idle timeout period. A zero value means no timeout is used. |
HONO_REGISTRY_HTTP_INSECUREPORT hono.registry.http.insecurePort |
no | - | The insecure port the server should listen on for HTTP requests. See Port Configuration below for details. |
HONO_REGISTRY_HTTP_INSECUREPORTBINDADDRESS hono.registry.http.insecurePortBindAddress |
no | 127.0.0.1 |
The IP address of the network interface that the insecure HTTP port should be bound to. See Port Configuration below for details. |
HONO_REGISTRY_HTTP_INSECUREPORTENABLED hono.registry.http.insecurePortEnabled |
no | false |
If set to true the server will open an insecure port (not secured by TLS) using either the port number set via HONO_REGISTRY_HTTP_INSECUREPORT or the default HTTP port number (8080 ) if not set explicitly.See Port Configuration below for details. |
HONO_REGISTRY_HTTP_KEYPATH hono.registry.http.keyPath |
no | - | The absolute path to the (PKCS8) PEM file containing the private key that the server should use for authenticating to clients. This option must be used in conjunction with HONO_REGISTRY_HTTP_CERTPATH . Alternatively, the HONO_REGISTRY_HTTP_KEYSTOREPATH option can be used to configure a key store containing both the key as well as the certificate. |
HONO_REGISTRY_HTTP_KEYSTOREPASSWORD hono.registry.http.keyStorePassword |
no | - | The password required to read the contents of the key store. |
HONO_REGISTRY_HTTP_KEYSTOREPATH hono.registry.http.keyStorePath |
no | - | The absolute path to the Java key store containing the private key and certificate that the server should use for authenticating to clients. Either this option or the HONO_REGISTRY_HTTP_KEYPATH and HONO_REGISTRY_HTTP_CERTPATH options need to be set in order to enable TLS secured connections with clients. The key store format can be either JKS or PKCS12 indicated by a .jks or .p12 file suffix respectively. |
HONO_REGISTRY_HTTP_MAXPAYLOADSIZE hono.registry.http.maxPayloadSize |
no | 16000 |
The maximum size of an HTTP request body in bytes that is accepted by the registry. |
HONO_REGISTRY_HTTP_PORT hono.registry.http.port |
no | 8443 |
The secure port that the server should listen on for HTTP requests. See Port Configuration below for details. |
HONO_REGISTRY_HTTP_SECUREPROTOCOLS hono.registry.http.secureProtocols |
no | TLSv1.3,TLSv1.2 |
A (comma separated) list of secure protocols (in order of preference) that are supported when negotiating TLS sessions. Please refer to the vert.x documentation for a list of supported protocol names. |
HONO_REGISTRY_HTTP_SUPPORTEDCIPHERSUITES hono.registry.http.supportedCipherSuites |
no | - | A (comma separated) list of names of cipher suites (in order of preference) that are supported when negotiating TLS sessions. Please refer to JSSE Cipher Suite Names for a list of supported names. |
HONO_REGISTRY_HTTP_TENANTIDPATTERN hono.registry.http.tenantIdPattern |
no | ^[a-zA-Z0-9-_\.]+$ |
The regular expression to use to validate tenant ID. Please refer to the java pattern documentation. |
HONO_REGISTRY_SVC_CACHEMAXAGE hono.registry.svc.cacheMaxAge |
no | 180 |
The maximum period of time (seconds) that information returned by the service’s operations may be cached for. |
HONO_REGISTRY_SVC_COLLECTIONNAME hono.registry.svc.collectionName |
no | devices |
The name of the MongoDB collection where the server stores registered device information. |
HONO_REGISTRY_SVC_MAXDEVICESPERTENANT hono.registry.svc.maxDevicesPerTenant |
no | -1 |
The number of devices that can be registered for each tenant. It is an error to set this property to a value < -1. The value -1 indicates that no limit is set. |
HONO_REGISTRY_SVC_USERNAMEPATTERN hono.registry.svc.usernamePattern |
no | ^[a-zA-Z0-9-_=\\.]+$ |
The regular expression to use for validating authentication identifiers (user names) of hashed-password credentials. |
HONO_TENANT_SVC_CACHEMAXAGE hono.tenant.svc.cacheMaxAge |
no | 180 |
The maximum period of time (seconds) that information returned by the service’s operations may be cached for. |
HONO_TENANT_SVC_COLLECTIONNAME hono.tenant.svc.collectionName |
no | tenants |
The name of the MongoDB collection where the server stores tenants information. |
The variables only need to be set if the default value does not match your environment.
In addition to the options described in the table above, this component supports the following standard configuration options:
Port Configuration
The device registry supports configuration of both an AMQP based endpoint exposing the Tenant, Device Registration and Credentials APIs as well as an HTTP based endpoint providing resources for managing tenants, registration information and credentials as defined by the Registry Management API. Both endpoints can be configured to listen for connections on
- a secure port only (default) or
- an insecure port only or
- both a secure and an insecure port (dual port configuration)
The registry will fail to start if none of the ports is configured properly.
The following sections apply to configuring both the AMQP and the HTTP endpoint. The environment variables to use for
configuring the HTTP endpoint are the same as the ones for the AMQP endpoint, substituting _AMQP_
with _HTTP_
,
e.g. HONO_REGISTRY_HTTP_KEYPATH
instead of HONO_REGISTRY_AMQP_KEYPATH
.
Secure Port Only
The server needs to be configured with a private key and certificate in order to open a TLS secured port.
There are two alternative ways for doing so:
- Setting the
HONO_REGISTRY_AMQP_KEYSTOREPATH
and theHONO_REGISTRY_AMQP_KEYSTOREPASSWORD
variables in order to load the key & certificate from a password protected key store, or - setting the
HONO_REGISTRY_AMQP_KEYPATH
andHONO_REGISTRY_AMQP_CERTPATH
variables in order to load the key and certificate from two separate PEM files in PKCS8 format.
When starting up, the server will bind a TLS secured socket to the default secure port (5671
for AMQP and 8443
for HTTP).
The port number can also be set explicitly using the HONO_REGISTRY_AMQP_PORT
variable.
The HONO_REGISTRY_AMQP_BINDADDRESS
variable can be used to specify the network interface that the port should be exposed on.
By default, the port is bound to the loopback device only, i.e. the port will only be accessible from the local host.
Setting this variable to 0.0.0.0
will let the port being bound to all network interfaces (be careful not to expose
the port unintentionally to the outside world).
Insecure Port Only
The secure port will mostly be required for production scenarios. However, it might be desirable to expose a non-TLS secured port instead, e.g. for testing purposes. In any case, the non-secure port needs to be explicitly enabled either by
- explicitly setting
HONO_REGISTRY_AMQP_INSECUREPORT
to a valid port number, or - implicitly configuring the default port (
5672
for AMQP and8080
for HTTP) to be used by settingHONO_REGISTRY_AMQP_INSECUREPORTENABLED
totrue
.
The server issues a warning on the console if one of the insecure ports is set to the corresponding default secure port.
The HONO_REGISTRY_AMQP_INSECUREPORTBINDADDRESS
variable can be used to specify the network interface that the port should be
exposed on. By default, the port is bound to the loopback device only, i.e. the port will only be accessible from the
local host. This variable might be used to e.g. expose the non-TLS secured port on a local interface only, thus
providing easy access from within the local network, while still requiring encrypted communication when accessed from
the outside over public network infrastructure.
Setting this variable to 0.0.0.0
will let the port being bound to all network interfaces (be careful not to expose
the port unintentionally to the outside world).
Dual Port
In test setups and some production scenarios Hono server may be configured to open one secure and one insecure port at the same time.
This is achieved by configuring both ports correctly (see above). The server will fail to start if both ports are configured to use the same port number.
Since the secure port may need different visibility in the network setup compared to the secure port, it has its own
binding address HONO_REGISTRY_AMQP_INSECUREPORTBINDADDRESS
. This can be used to narrow the visibility of the insecure port
to a local network e.g., while the secure port may be visible worldwide.
Ephemeral Ports
Both the secure as well as the insecure port numbers may be explicitly set to 0
. The registry will then use
arbitrary (unused) port numbers determined by the operating system during startup.
Authentication Service Connection Configuration
The service requires a connection to an implementation of Hono’s Authentication API in order to authenticate and authorize client requests.
The connection is configured according to the Hono Client Configuration
where the ${PREFIX}
is set to HONO_AUTH
. The properties for configuring the client’s response caching will be ignored because
Hono’s Authentication Service does not allow caching of responses.
In addition to the standard client configuration properties, the following properties are supported:
OS Environment Variable Java System Property |
Mandatory | Default | Description |
---|---|---|---|
HONO_AUTH_JWKSENDPOINTPOLLINGINTERVAL hono.auth.jwksEndpointPollingInterval |
no | PT5M |
The interval at which the JWK set should be retrieved from the Authentication service. The format used is the standard java.time.Duration format. |
HONO_AUTH_JWKSENDPOINTPORT hono.auth.jwksEndpointPort |
no | 8088 |
The port of the Authentication service’s HTTP endpoint to retrieve the JWK set from. |
HONO_AUTH_JWKSENDPOINTTLSENABLED hono.auth.jwksEndpointTlsEnabled |
no | false |
Indicates if TLS should be used to retrieve the JWK set from the Authentication service. |
HONO_AUTH_JWKSENDPOINTURI hono.auth.jwksEndpointUri |
no | /validating-keys |
The URI of the Authentication service’s HTTP endpoint to retrieve the JWK set from. |
HONO_AUTH_VALIDATION_AUDIENCE hono.auth.validation.audience |
no | - | The value to expect to find in a token’s aud claim. If set, the token will not be trusted if the value in the claim does not match the value configured using this property. |
HONO_AUTH_VALIDATION_CERTPATH hono.auth.validation.certPath |
no | - | The absolute path to the PEM file containing the public key that the service should use for validating tokens issued by the Authentication service. Alternatively, a symmetric key can be used for validating tokens by setting the HONO_AUTH_VALIDATION_SHAREDSECRET variable. If none of these variables is set, the service will try to retrieve a JWK set containing the key(s) from the Authentication server. |
HONO_AUTH_VALIDATION_ISSUER hono.auth.validation.issuer |
yes | https://hono.eclipse.org/auth-server |
The value to expect to find in a token’s iss claim. The token will not be trusted if the value in the claim does not match the value configured using this property. |
HONO_AUTH_VALIDATION_SHAREDSECRET hono.auth.validation.sharedSecret |
no | - | A string to derive a symmetric key from which will be used for validating tokens issued by the Authentication service. The key is derived from the string by using the bytes of the String’s UTF8 encoding. When setting the validation key using this variable, the Authentication service must be configured with the same key. Alternatively, an X.509 certificate can be used for validating tokens by setting the HONO_AUTH_VALIDATION_CERTPATH variable. If none of these variables is set, the service will try to retrieve a JWK set containing the key(s) from the Authentication server. |
Metrics Configuration
See Monitoring & Tracing Admin Guide for details on how to configure the reporting of metrics.
Encrypting Secrets
Hono’s CoAP protocol adapter supports authentication of devices during the DTLS handshake based on a pre-shared key. A pre-shared key is an arbitrary sequence of bytes which both the device as well as the protocol adapter need to present during the handshake in order to prove their identity. The Mongo DB based registry implementation supports managing these keys by means of PSK credentials which can be set for devices. By default, the bytes representing the key are stored as a base64 encoded string property of the credentials document. In order to better protect these keys from unintended disclosure, the registry can be configured to encrypt these keys before they are written to the database collection. During read operations the keys are then decrypted again before they are returned to an authorized client.
In order to activate this transparent encryption/decryption, the HONO_CREDENTIALS_SVC_ENCRYPTIONKEYFILE
configuration
variable needs to be set to the path to a YAML file containing the definition of the symmetric keys that should be used
for encryption. The file is expected to have the following format:
defaultKey: 2
keys:
- version: 1
key: hqHKBLV83LpCqzKpf8OvutbCs+O5wX5BPu3btWpEvXA=
- version: 2
key: ge2L+MA9jLA8UiUJ4z5fUoK+Lgj2yddlL6EzYIBqb1Q=
The file needs to contain at least all versions of the key that values in the database collection have been encrypted with.
Otherwise the registry will not be able to decrypt these values during reading. The defaultKey
property indicates the
version of the key that should be used when encrypting values. Please refer to the
CryptVault project for additional information regarding key rotation.
Messaging Configuration
The Device Registry uses a connection to an AMQP 1.0 Messaging Network and/or an Apache Kafka cluster to
- send Device Provisioning Notification event messages to convey provisioning related changes regarding a device, to be received by downstream applications,
- send notification messages about changes to tenant/device/credentials data, to be processed by other Hono components.
For the event messages a connection to a Apache Kafka cluster is used by default, if configured. If both kinds of messaging are configured, the decision which one to use is done according to the Tenant Configuration.
For notification messages, the Kafka connection is used by default, if configured. Otherwise the AMQP messaging network is used.
AMQP 1.0 Messaging Network Connection Configuration
The connection to the AMQP 1.0 Messaging Network is configured according to the
Hono Client Configuration with HONO_MESSAGING
being used as ${PREFIX}
.
Since there are no responses being received, the properties for configuring response caching can be ignored.
Kafka based Messaging Configuration
The connection to an Apache Kafka cluster can be configured according to the Hono Kafka Client Configuration.
The following table shows the prefixes to be used to individually configure the Kafka clients used by the Device Registry.
The individual client configuration is optional, a minimal configuration may only contain a common client
configuration consisting of properties prefixed with HONO_KAFKA_COMMONCLIENTCONFIG_
and hono.kafka.commonClientConfig.
respectively.
OS Environment Variable Prefix Java System Property Prefix |
Description |
---|---|
HONO_KAFKA_EVENT_PRODUCERCONFIG_ hono.kafka.event.producerConfig. |
Configures the Kafka producer that publishes event messages. |
HONO_KAFKA_NOTIFICATION_PRODUCERCONFIG_ hono.kafka.notification.producerConfig. |
Configures the Kafka producer that publishes notification messages about changes to tenant/device/credentials data. |