-
Hi , I tired to create a 2nd container with H2 DB whose DB I imported from the previous container and it started well but the DB comes up with read only mode and not allowing me to do any write operations but can read/search all the data of previous container. Can any one guide how can I pass through this. The command used for 2nd container using H2 DB of 1st container. docker run -it -p 81:8080 -p 444:8443 --name uat-pki-lab-11072025_1 -h uat.pkilab.com -e TLS_SETUP_ENABLED="true" -e PASSWORD_ENCRYPTION_KEY="test" -e CA_KEYSTOREPASS="test" -e EJBCA_CLI_DEFAULTPASSWORD="test" -e ADMINWEB_ACCESS="true" -e LOG_LEVEL_APP_WS_TRANSACTIONS="DEBUG" -e LOG_LEVEL_APP="DEBUG" -v /tmp/server.jks:/mnt/external/secrets/tls/ks/server.jks -v /tmp/server.storepasswd:/mnt/external/secrets/tls/ks/server.storepasswd -v /tmp/truststore.jks:/mnt/external/secrets/tls/ts/truststore.jks -v /tmp/ejbcadb.mv.db:/mnt/persistent/ejbcadb.mv.db keyfactor/ejbca-ce:8.0.0 Log Error: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
With some further R&D I found that it was user permission which is making the DB right only. I changed the user rights using chown command with proper user and it started working. |
Beta Was this translation helpful? Give feedback.
With some further R&D I found that it was user permission which is making the DB right only. I changed the user rights using chown command with proper user and it started working.