This article describes how to set up Utimaco with Digital Access acting as IDP in case of SAML.
Note |
---|
The instructions below need to be done in all Digital Access VMs running the administration and policy service. |
...
Expand |
---|
title | Create folder structure |
---|
|
In the Digital Access docker host, create a folder called “utimaco” with sub-folders as shown below:
Code Block |
---|
$ tree -d utimaco
utimaco/
├── etc
├── lib
└── log |
Copy the required utimaco files: .so, .cfg, .pks files as shown below:
Code Block |
---|
$ tree utimaco
utimaco
├── etc
│ ├── cs_pkcs11_R3.cfg
│ └── P11.pks
├── lib
│ └── libcs_pkcs11_R3.so
└── log |
Note : For older Utimaco Simulator versions, the .cfg, .so files could differ from R3. Make sure the folder structure has the following owner and permissions:
Code Block |
---|
sudo chown -R 1003:1003 utimaco |
note
UID may be different depending on the container environment. |
Configuration
Expand |
---|
title | Edit configuration files |
---|
|
Set log path and level as shown below:
Code Block |
---|
# For Unix:
Logpath = /opt/utimaco/log
# Loglevel (0 = NONE; 1 = ERROR; 2 = WARNING; 3 = INFO; 4 = TRACE)
Logging = 0 |
Set the path to .pks (Specifies the path to the external key storage if keysExternal is set to true) as shown below:
Code Block |
---|
# For Unix:
KeyStorageConfig = /opt/utimaco/etc/P11.pks |
Note : Set this depending on your Utimaco version configuration Set IP(s) of remote devices as shown below:
Code Block |
---|
[CryptoServer]
Device = { 3001@192.168.0.2 3003@192.168.0.3 } |
|
...
Expand |
---|
title | Configure Digital Access container |
---|
|
In the docker compose for admin service, mount the “utimaco” folder created in the first step in section "Create folder structure" above, and define the respective CS_PKCS11_R3_CFG environment variable. Utimaco reads this to locate its configuration file. Code Block |
---|
da-admin:
(removed for brevity)
environment:
(removed for brevity)
- CS_PKCS11_R3_CFG=/opt/utimaco/etc/cs_pkcs11_R3.cfg
volumes:
(removed for brevity)
- <utimaco-folder-path-on-host>:/opt/utimaco:z | note |
The same changes also need to be done in docker-compose files of all policy services. - If Utimaco logging required, adapt the above configuration to ensure that each Digital Access node logs to its own log file.
- If Digital Access Admin and Digital Access policy is running on same host, make ENV CS_PKCS11_R3_CFG unique for each Digital Access container and specify a unique log location in Utimaco.cfg.
|
...