How To Install cinder-scheduler on Ubuntu 20.04

In this tutorial we learn how to install cinder-scheduler on Ubuntu 20.04. cinder-scheduler is Cinder storage service - Scheduler server Cinder storage service - Scheduler server Cinder storage service - Scheduler server

Introduction

In this tutorial we learn how to install cinder-scheduler on Ubuntu 20.04.

What is cinder-scheduler

cinder-scheduler is:

OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

Cinder is the OpenStack Block storage service.

This package contains the Cinder Scheduler server.

Package: cinder-scheduler Architecture: all Version: 2:16.1.0-0ubuntu1 Priority: extra Section: net Source: cinder Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 37 Depends: python3-cinder (= 2:16.1.0-0ubuntu1) Filename: pool/main/c/cinder/cinder-scheduler_16.1.0-0ubuntu1_all.deb Size: 4820 MD5sum: b524933fd6487ab514c169b2b613e784 SHA1: 86b9b116e6de2a7ddbe79550da965e93d1182be4 SHA256: 8d3f7f6bb6004c3b8be9a9ded65fbf22cbd011b78bb0fccece15e3e2dde7c4bf SHA512: 5613745fe52c2722b6f5078beadd751ffd02d0871d3d21a06c829154e45c2cc0ebc4972b369da4a12bfc0b9a019bb3e0318fd78eb3587c27575bec2b17d22724 Homepage: https://launchpad.net/cinder Description-en: Cinder storage service - Scheduler server OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

Cinder is the OpenStack Block storage service.

This package contains the Cinder Scheduler server.

Package: cinder-scheduler Architecture: all Version: 2:16.0.0~b3~git2020041012.eb915e2db-0ubuntu1 Priority: extra Section: net Source: cinder Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 37 Depends: python3-cinder (= 2:16.0.0~b3~git2020041012.eb915e2db-0ubuntu1) Filename: pool/main/c/cinder/cinder-scheduler_16.0.0~b3~git2020041012.eb915e2db-0ubuntu1_all.deb Size: 4840 MD5sum: 6dca44e8fdfb9647ed6f78ea6933a9aa SHA1: ab72f99540ddda6b0b4f78225071fe61bdf4f4c2 SHA256: 9ea15199eea1df3dd9e849533ccf3363ac4e055c6223d226104d2c5a1aeb7bfc Homepage: https://launchpad.net/cinder Description-en: Cinder storage service - Scheduler server OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

Cinder is the OpenStack Block storage service.

This package contains the Cinder Scheduler server.

There are three methods to install cinder-scheduler on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install cinder-scheduler Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install cinder-scheduler using apt-get by running the following command:

sudo apt-get -y install cinder-scheduler

Install cinder-scheduler Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cinder-scheduler using apt by running the following command:

sudo apt -y install cinder-scheduler

Install cinder-scheduler Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install cinder-scheduler using aptitude by running the following command:

sudo aptitude -y install cinder-scheduler

How To Uninstall cinder-scheduler on Ubuntu 20.04

To uninstall only the cinder-scheduler package we can use the following command:

sudo apt-get remove cinder-scheduler

Uninstall cinder-scheduler And Its Dependencies

To uninstall cinder-scheduler and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove cinder-scheduler

Remove cinder-scheduler Configurations and Data

To remove cinder-scheduler configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge cinder-scheduler

Remove cinder-scheduler configuration, data, and all of its dependencies

We can use the following command to remove cinder-scheduler configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cinder-scheduler

References

Summary

In this tutorial we learn how to install cinder-scheduler package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.