The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
AI server docker restart
Probably missing something but after I managed to get the server running under docker it fails to start again after a reboot. I've been going through all of the content but can find only info on how to install fresh, not how to deal with an existing installation.
I'm running on Linux, error given is RMSSOAuthenticator error, failed to load IDP configuration
Can someone tell me in simple steps how I can (re)start my docker image, or check if all required components are running to start with?
Tagged:
0
Answers
you might first want to checkout if the database configuration is the problem whether your docker instance does not start up properly. The error might appear also when other paramters aren't configured right.
If you use the on-board postgresql Database which is part of the package you better keep the configuration just like described in the RM docs.
In my case I am using a dedicated mssql database running on the same host. Since I migrated from a standalone to a docker instance. So the configuration has to be slightly different since the path to the database is not part of the docker instance itself:
I configured my Rapidminer Server in the .env file as following:
Further you need to configure the database type in the docker-compose file: This is important for loading the correct drivers.
- ......
But you might also be able to do that in your .env file if preferred.
Hope this helps!