Installer le client OpenStack sous Linux : Différence entre versions

De Hopla.cloud OpenStack Documentation Wiki
Aller à : navigation, rechercher
Ligne 12 : Ligne 12 :
 
===CentOS===
 
===CentOS===
 
Installation des dépôts et mise à jour<syntaxhighlight lang="bash">
 
Installation des dépôts et mise à jour<syntaxhighlight lang="bash">
yum install epel-release -y  
+
sudo yum install epel-release -y  
yum update -y
+
sudo yum update -y
  
yum install -y https://rdoproject.org/repos/rdo-release.rpm  
+
sudo yum install -y https://rdoproject.org/repos/rdo-release.rpm  
yum install -y centos-release-openstack-queens
+
sudo yum install -y centos-release-openstack-queens
 
</syntaxhighlight>Installation des paquets<syntaxhighlight>
 
</syntaxhighlight>Installation des paquets<syntaxhighlight>
yum install -y python-devel python-pip gcc
+
sudo yum install -y python-devel python-pip gcc
yum install -y python-openstackclient
+
sudo yum install -y python-openstackclient
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
=Extension Octavia=
 
=Extension Octavia=
 
Installation de l'extension du client OpenStack pour Piloter vos Load Balancers (Octavia) en ligne de commande :<syntaxhighlight lang="bash">
 
Installation de l'extension du client OpenStack pour Piloter vos Load Balancers (Octavia) en ligne de commande :<syntaxhighlight lang="bash">
yum install python-octaviaclient
+
sudo yum install python-octaviaclient
 
</syntaxhighlight>
 
</syntaxhighlight>
 
[[Catégorie:Experts]]
 
[[Catégorie:Experts]]

Version du 8 août 2019 à 15:36

Description

Cette page décrit comment installer le logiciel client pour Openstack, qui permets d'utiliser le cloud hopla.cloud en ligne de commande (CLI).

Prérequis

Installation

CentOS

Installation des dépôts et mise à jour

sudo yum install epel-release -y 
sudo yum update -y

sudo yum install -y https://rdoproject.org/repos/rdo-release.rpm 
sudo yum install -y centos-release-openstack-queens

Installation des paquets

sudo yum install -y python-devel python-pip gcc
sudo yum install -y python-openstackclient

Extension Octavia

Installation de l'extension du client OpenStack pour Piloter vos Load Balancers (Octavia) en ligne de commande :

sudo yum install python-octaviaclient