February 2018
Beginner
290 pages
7h 28m
English
Once Docker has been installed, the ManageIQ container is a matter of pulling the image and instantiating it:
sudo systemctl start docker sudo docker run --privileged -d -p 8443:443 manageiq/manageiq:fine-4
The docker run command will pull all images of the ManageIQ fine-4 version, run it in a disconnect mode (-d), and map the port in the container HTTPS to the 8443 port on the container host (-p 8443:443).

We can now log into the web UI of the Manage IQ system, by using the following link:
https://<IP address of Ubuntu16.04>:8443
The user credentials are admin and smartvm. You should remember that the server ...
Read now
Unlock full access