Problem
When trying to console into a VM, instead of opening the console you are redirected to a login page with this URL:
https://<YourHostname>/accounts/login/?next=/servers/<IDofYourVM>/console/
Cause
The console is not encrypted, but can be easily updated.
Affected Versions
CloudBolt 9.4.5 +
Solution
Overview
All that is needed is to add a single line to your /var/opt/cloudbolt/proserv/customer_settings.py
file.
SSH to your CloudBolt instance
cd to
/var/opt/cloudbolt/proserv/
Edit your
customer_settings.py
file withvi customer_settings.py
Add the following line to the file:
ENCRYPT_CONSOLE = True
Save your changes in the file
Restart apache with
service httpd restart
Consoling to your VMs should now work as expected!
0 Comments