Deploy Smart ID
This article includes updates for Smart ID 23.04.
All the components in the Smart ID Workforce solution are deployed as Docker containers, except Smart ID Certificate Manager (CM) and Nexus OCSP Responder.Â
Smart ID deployment configuration release note
Prerequisites
Docker Compose V2
From Docker Compose V2 the compose features are integrated into the Docker platform. If you use Compose V2, use the command "docker compose" (instead of "docker-compose"), that is, remove the dash and replace it with a space. Smart ID will not be affected by Compose V2 and can be used as today.
Smart ID deployment recommendations
See Smart ID deployment recommendations.
Smart ID components requirements and interoperability
For more information on the full support of databases, operating systems, browsers, and more, see:
Docker prerequisites
Docker client and engine version 20.10.10 or later
Docker Compose version 1.25.5 or later and Docker Compose file version 3.7 or later
Kubernetes is supported, but there is no example configuration available.
General prerequisites
Supported host operating systems:
Linux that supports the Docker and Docker Compose versions above
Windows on requestÂ
Valid licenses for all components to be used.
A database must be installed and in running mode. Supported databases are listed in Smart ID deployment recommendations.
Valid Support account at https://support.nexusgroup.com
For online deployment, as described below, your hosts need internet access.
If this is a offline deployment, the docker containers needs to be downloaded and transferred to the hosts.
DNS records must be created for each application to each Smart ID host:
DNS examples
# Identity Manager idm.smartid.example.com selfservice.smartid.example.com admin.smartid.example.com tenant.smartid.example.com # Digital Access access.smartid.example.com # Physical Access physicalaccess.smartid.example.com pa-maintenance.smartid.example.com pa-arx.smartid.example.com # Messaging Hermod mb.smartid.example.com
If you do not have the possibility to create DNS records, for example in a test environment, then you can add the wanted DNS records in your localhost file. Add them both on the Smart ID host and on the clients that you want to use to access Smart ID.
Install Docker and Docker compose
Installation of Docker and Docker compose varies depending on your operating system.
Install Docker
To install Docker, go to the official documentation (Install Docker Engine | Docker Documentation) and chose the system on which you plan to install it. Then follow the installation guide.
Install Docker compose
To install Docker compose, follow the installation guide (Install Docker Compose | Docker Documentation).
Rootless Docker
Docker engine is by default run as root. If you do not want to run containers with root, but with a specific user, read more here:Â
Rootless Docker is not supported by Smart ID Digital Access.Â
Deploy Smart ID
Configure services
Create Smart ID user account (Not required for Digital Access)
To avoid any permission issues, it is recommended that you create a dedicated Smart ID user account and run the Smart ID applications on the user's home directory.
On each host, create a user account for Smart ID and add that user to the docker group.
Create Smart ID User Ubuntu
sudo adduser --disabled-password --gecos "" --shell /bin/bash nexus sudo usermod -aG docker nexus
Â
Create Smart ID User CentOS
sudo adduser -r -d /home/nexus --shell /bin/bash nexus sudo usermod -aG docker nexus
Â
Switch to a Smart ID user:Â
Switch to Smart ID user
Download Smart ID files
Browse to support.nexusgroup.com/ and login with your account.
Click on Download Portal and click on Smart ID.
Click on SmartID-<version>-deployment<release-date>.tgz to download the deployment file to your computer. Where <version> represents the version you want to download.
Click on SmartID-<version>-configuration.zip to download the configuration file to your computer. Where <version> represents the version you want to download.
This file contains standard Smart ID configurations that can later be uploaded to Identity Manager.Transfer the SmartID-<version>-deployment<release-date>.tgz file to your Smart ID hosts and extract it in your Smart ID home folder <SMARTIDHOME>/:
Go to home folder of Smart ID user
The structure of sub folders in the Smart ID home directory, <SMARTIDHOME>/, is as follows:Â
Sub folder structure of Smart ID home
Edit environment variables
You must change at least these variables, see instructions below:
SMARTID_INGRESS_DOMAIN
DBHOST
TRAEFIK_ACME_EMAIL
Other variables are optional to change, but in a production environment you must change the credentials.
Set variables in the environment file to match your environment:Â Â
Open the environment file <SMARTIDHOME>/compose/smartid.env for editing.Â
Change timezone (TZ) to fit your environment.
Change
TRAEFIK_ACME_EMAIL
to fit your deployment. You must do this even if you do not use ACME.Example: Change TRAEFIK_ACME_EMAIL
Change the database host (
DBHOST
) for Identity Manager, Hermod, or Digital Access to fit your deployment. If it is a test deployment and database is running on the same host, the host IP-address or the docker-ip of the Postgres deployment must be used.localhost
or127.0.0.1
will not work.Example: Change timezone and database host
Change the version of Smart ID if needed:Â
Example: Change Smart ID Version
Change the value of
SMARTID_INGRESS_DOMAIN
to fit your deployment. It is recommended to use a sub-domain with wildcard for Smart ID. For example *.smartid.example.com and point that domain to your host.Example: Set Smart ID Ingress domain
Change database credentials
To change the type or database name or password, change the following variables. If this is a test deployment, you don't have to change anything here. Note that the Physical Access database hosts is specified using the variablePA_DB_HOST
.Example: Change database credentials
Initialize your deployment
To initialize the deployment:
Make the initialization scripts executable if they are not already:
Make init scripts executable
Run the initialization script for Smart ID. The script checks if docker and docker-compose are installed; if not, the script will exit. It creates docker networks, symbolic links, directories and users, and sets permissions for Smart ID.
Run init script
Then, the script asks a few questions:
The script asks if a Postgres database should be deployed.
Script snippet: ask for Postgres
For a production deployment, type n for No. Then, the script will skip this step.
For a test deployment, type y for Yes. Then the script will create and start a Postgres database.
Script snippet: ask for Postgres answered Yes
The script asks if traefik should be used as Ingres/proxy. Typing y for Yes will create acme.json and set the permissions.
Not required for Digital Access.Â
Script snippet: ask for Traefik answered Yes
The script asks if Digital Access will be deployed to the host. Typing y for Yes will create the user "pwuser" and set permissions.
Script snippet: ask for Digital Access answered Yes
After that, the script finishes and you can proceed to the next step. See Edit environment variables.
Script snippet: script ran successfully
To see exactly what steps have been done, see the log file init-smartid.log after executing the script.
Â
Only for Digital Access and CentOS:
If you are deploying Digital Access on a CentOS >=7 and you want to use port 443, you must redirect the network traffic internally on the host. This can be done in many ways, here is one example. As a result of this you must also change the listening port for the Access Point to 9001. If this is not changed, the startup of the Access Point container will fail. The result after the change is that all incoming traffic on 443 will be redirected internally to 9001.
Redirect traffic from 443 to 9001
Redirect traffic
Change listening port for Access Point in Digital Access Admin:
Go to Manage System > Access Points.
Click on the Service ID for the Access Point that you want to edit.
Change Portal Port and Sandbox Port to 9001.
Click Save.
Publish the configuration.
Configure certificates (Not required for Digital Access)
Configure TLS certificate
To change TLS Certificate:
Make sure your certificate and key are in PEM format.
Put your certificate and key in <SMARTIDHOME>/compose/certs.
Change permissions of the certificate and key file:
Example: Change permissions
Open <SMARTIDHOME>/compose/smartid.env for editing.
Change the default certificates by editing the filenames smartidtls_cer.pem and smartidtls_key.pem:
Example: Change default certificates
Enable Strict SNI
Strict server name indication (SNI) can be used as an extra security measure. By default, strict SNI is set to false. Â
Set TRAEFIK_TLS_STRICTSNI to
true
in smartid.envEnable Strict SNI
Change Cipher Suites and TLS version
Open <SMARTIDHOME>/docker/compose/traefik/config/traefik-tls.yml for editing.
traefik-tls.yml
Add or delete any Cipher Suites.
To change TLS version for traefik, use
minVersion
andmaxVersion
.ÂminVersion
is the minimum allowed TLS version, andmaxVersion
is the maximum allowed TLS version. Default, the allowed version of TLS is 1.2.Note that some mobile devices do not have full support for TLS 1.3 and can cause compatibility issues.
TLS Versions
Start and verify services
Start ingress/proxy Traefik
Start the ingress/proxy Traefik:Â
Start Traefik
Start Identity Manager
Start the initialization of the database. This is only required at the first startup:Â
Initialize the database
Information is written on the screen, and if it was successful, you should see this text at the end:
smartid-idm-updatedb exited with code 0
To instead write all information only to the log file, add
-d
to the command, like this:docker-compose up -d
Check the logs of the database initialization:
Check logs for initialization
Start Identity Manager components:
Location of services
Example - Location of Identity Manager services
Start the services:
Example - Start Identity Manager Admin
Â
Start Hermod
Start Hermod:Â
Start Hermod
Start Smart ID Self-Service
Start Smart ID Self-Service:Â
Start Self-Service
Start Physical Access
Give permission to use the logs/rabbitmq directory:
Give permission
Start Physical Access with one or more PACS connectors. See the list of PACS connector services below.
The servicesÂsmartid-pa-rabbitmq
,smartid-pa-scimapi
andsmartid-pa-maintenance
must be started for all Physical Access use cases:ÂSyntax: Start Physical Access with PACS connectors
Â
Example: Start Physical Access with ASSA ARX connector
PACS | PACS connector service name | For more information |
---|---|---|
ASSA ARX | smartid-pa-arx | |
Bewator Omnis | smartid-pa-omnis | |
Bravida Integra | smartid-pa-integra | |
Interflex IF-6040 | smartid-pa-interflex | |
Kaba exos 9300 | smartid-pa-kabaexos | |
RCO R-CARD M5 Admin API | smartid-pa-rcom5 | |
RCO R-CARD M5 | smartid-pa-rco | |
Salto (we have 2 Salto: SALTO ProAccess and SALTO ProAccess SPACE) | smartid-pa-salto | |
Security Shells iSecure | smartid-pa-isecure | Set up integration with Security Shells iSecure for connection with HID controllers |
SiPass | smartid-pa-sipass | |
SiPort | smartid-pa-siport | |
Unilock | smartid-pa-unilock | |
Unison Pacom | smartid-pa-unison | |
PACS demo service | smartid-pa-demo |
Start Digital Access
Start Digital Access sub components, by going into the wanted component folder:
Digital Access - services location
Â
Example: Start DÃgital Access Administration service
Verify services
Verify the Smart ID installation:Â
Verify each component, by browsing to the DNS names and the configured port, for example:
Example DNS names
For Physical Access, verify the started Physical Access services by browsing to the DNS names, for example:
Example DNS names
Or browse to the IP address for all started services, for example:
IP address
The default port for each Physical Access service can be found in Default ports in Smart ID.
List all running docker containers:
Example: List containers
Check the logs:
To check a log, go to the application folder, for example <SMARTIDHOME>/compose/identitymanager and run this command:
Example: Check logs
To check all logs with tail, go to the application folder, for example <SMARTIDHOME>/compose/identitymanager and run this command:
Example: Check all logs with tail
Stop services
To stop a specific service, go to the application folder, for example <SMARTIDHOME>/compose/identitymanager/operator and run this command:
Stop services
Configure Smart ID
Continue with Configure Smart ID.
Copyright 2024 Technology Nexus Secured Business Solutions AB. All rights reserved.
Contact Nexus | https://www.nexusgroup.com | Disclaimer | Terms & Conditions