Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
RapidMiner 9.7 AI Hub BYOL image on Azure
christos_karras
Member Posts: 50 Guru
I created a RapidMiner 9.7 AI Hub Bring your own license image on the Azure marketplace (for testing), but I can't find any documentation about additional setup steps that need to be done once that image is created, for example:
- How to setup my license
- How to enable access to the web interface
- Anything else that needs to be done to have a fully functionnal image
Currently, I'm only able to login the VM using SSH. Once logged in, I can use "sudo docker ps" and see that a few Docker images are running, but several other images related to RapidMiner are installed but not running.
Where can I find the procedure to complete the setup?
- How to setup my license
- How to enable access to the web interface
- Anything else that needs to be done to have a fully functionnal image
Currently, I'm only able to login the VM using SSH. Once logged in, I can use "sudo docker ps" and see that a few Docker images are running, but several other images related to RapidMiner are installed but not running.
Where can I find the procedure to complete the setup?
Tagged:
0
Answers
- Looking at the logs of the "rapidminer/rapidminer-deployment-init" container (using "docker logs"), I saw that it was stuck waiting for the server to be started with a valid license, with this message being continuously repeated: " Waiting for RapidMiner Server startup and license load to initialize role/group mirroring"
- After copying the license, some containers had to be restarted (which I did by rebooting the whole VM)
- After this restart, additional RapidMiner related containers were succesfully started
- Now, I needed to find the default password for the admin user in the RapidMiner web interface. To find it, I had to use "docker ps" to find the container ID of the "rapidminer/rapidminer-keycloak" image, then use "docker exec -i -t <id_of_the_container> /bin/bash -c set" to view environement variables and find the value of the KEYBLOCK_PASSWORD variable. I then used this password to successfully login the web interface.
This is not really a straightforward process and I don't know yet if I need to do anything else to have a fully setup AI Hub image, for example for Git, Grafana, Jupyter. Also it would have been impossible to figure out all of this for someone with no Docker experience. It would be useful to have a documented procedure specific to the Azure marketplace image (if it doesn't already exist)
Thanks