Installation
To install DCImanager, you need license information. If you purchased DCImanager from ISPsystem, you can view this information in your personal account at eu.ispsystem.com in the "Platforms" section. To install, you need a value from the Token field.
Before installing the platform:
- Make sure that the server meets the system requirements. Read more in the Server requirements article.
- Follow the instructions in the Server preparation article.
Installation steps
Connect to the server via SSH with superuser permissions (root per default).
Download the installation script:
curl -O https://download.ispsystem.com/6/dci/dcibox/dci
CODEMake it executable:
chmod +x dci
CODERun the installation using the activation key (license token):
./dci install -l="<token>"
CODEComments to the command:
<token> — the value of the Token parameter of your license. You can find it in the Client area eu.ispsystem.com on the license information page.
Optional parametersOptional command parameters:
-n — domain name of the server. Will be used in the platform URL;
Example command
./dci install -l="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -n="vmmanager.example.com"
CODE--registry-port — TCP port for downloading docker container images. Use this option if the server denies incoming connections on ports 5000/tcp and 443/tcp;
Example command
./dci install -l="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --registry-port=5001
CODE- -f — do not check the Docker version;
- --proxy — HTTP proxy settings in the format http://<user>:<password>@<address>:<port>:
- <user> — username for authorization. Optional parameter ;
- <password> — password for authorization. Optional parameter ;
- <address> — HTTP proxy IP address;
<port> — HTTP proxy port.
Example command for a proxy with authorization
./vm install -l="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --proxy="http://admin:pass123@192.168.57.1:3128"
CODEExample command for a proxy without authorization
./vm install -l="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" --proxy="http://192.168.57.1:3128"
CODE
The installer will check the version of the Docker software on the server. If the version is lower than 20.10.10, the installation will fail. To install the platform on a server with an older version of Docker, add the -f parameter to the installation command:
Example command
./dci install -l="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -f
CODEWait when the installation is completed. You will see the URL to DCImanager:
Terminal after successfull installation
Link to DCImanager administrator registration page: https://127.0.0.1/auth/setup?token=C50A0BFA55DEDE3343AABE713022A15F
BASHNote
When you open a link, your browser will display a warning about a possible security threat. This happens if the server uses a self-signed SSL certificate. . You can connect a valid SSL certificate to the platform by following the instructions.
- Go to the DCImanager interface using the received link and create the first user:
- Enter the User email.
- Create a Password or click generate to automatically generate a password.
- Click Done.
- Perform the initial setup of the platform.
- If you have a resource package certificate, activate it:
- Go to
→ System information → Activate package .
Enter the code from your resource package certificate.
- Press Activate.
For more information about resource packs, see the Licensing article.
- Go to
After installation, DCImanager platform will be available by the IP address or domain name of your server. The installer will be started as the systemd service.
Note
DCImanager uses the Docker virtualization system. By default, it uses networks 172.17.0.0/12. If your equipment uses addresses from these networks, you can change your Docker settings. For more information, see How to change the network used by Docker?
Reinstalling the platform
- Create a new Token value for your license. You can do it in your client area at eu .ispsystem.com or contact technical support.
Stop the platform:
dci down
CODEDelete directories /opt/ispsystem/dci and /var/lib/mysql :
rm /opt/ispsystem/dci /var/lib/mysql -rf
CODERestart the dci service:
systemctl restart dci
CODEInstall the platform:
dci install -l="<new_token>"
CODEComments to the command:
<new_token> — new value of the Token parameter for your license.
Logs
The DCImanager installation log is kept in the file /opt/ispsystem/dci/install.log.