RapidMiner 9.7 AI Hub BYOL image on Azure
christos_karras
MemberPosts:50Guru
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
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