Last updated 1st July 2019
Objective
You can manage Public Cloud services using commands sent from the system console, once you have downloaded and installed OpenStack tools.
With the OpenStack API, you can automate your management by generating scripts. The OpenStack Nova client can be used to manage instances and disk space. With the OpenStack Glance client, you can manage images and backups, while the Swift client can be used to manage object storage space.
Find out how to install these OpenStack tools.
Requirements
- root access to the environment you want to configure
Instructions
On Debian
Open the terminal, and connect to the environment you want to prepare via SSH.
Update the packet cache using the apt-get update
command:
apt-get update
Use the command below to install the Nova client (compute application), Glance (image service) and Swift:
apt-get install python-openstackclient python-novaclient -y
After you have completed this step, we recommend creating a special user without root access.
To access the help tools, run the following command:
openstack --help
nova help
The documentation for the OpenStack API is available here.
On CentOS
Open the terminal, and connect to the environment you want to prepare via SSH.
Update the packet cache using the following command:
yum update -y
Install the rdo-release RPM with the following command:
yum install -y https://rdoproject.org/repos/rdo-release.rpm
Then the OpenStack client:
yum install -y python-openstackclient
And finally, the Nova client:
yum install -y python-novaclient
After you have completed this step, we recommend creating a special user without root access.
To access the help tools, run the following command:
openstack --help
nova help
The documentation for the OpenStack API is available here.
On Windows
Download and install Python version 2.7.14. You can choose to add the Python programming language automatically to Path, by ticking this option in the installation configuration:
You can also install it yourself. To do this, follow the actions described below:
Step 1: Edit the system’s environment variables.
Search for the system’s environment variable settings, and go to “Edit the system environment variables”:
Step 2: Edit the system settings.
Go to the Advanced
tab, and click Environment Variables
to edit the settings.
Step 3: Configure the environment variables.
In the ‘System variables’ section, select ‘New’, attribute the name “PYTHON_HOME”, and add the access path to Python. By default, it will be: ‘C:\Python27’.
Step 4: Add the path for the variables.
Once you have added Python, edit the ‘Path’ field in the system variables, and add the following to the end of the path:
...;%PYTHON_HOME%\;%PYTHON_HOME%\Script
Step 5: Restart Windows.
The changes you have made will become effective after the system has been rebooted.
Step 6: Install the OpenStack client.
As an administrator, open the program in the command line (CMD), and install the OpenStack client using the following command:
# pip install python-openstackclient
If the operation is completed properly, you will see a summary:
You can check the installation version in the CMD (command line) window that has just opened, by entering ‘python-V’ from any system location.
Go further
Join our community of users on https://community.ovh.com/en/.