How To Install ceph-mgr-dashboard on Ubuntu 20.04

In this tutorial we learn how to install ceph-mgr-dashboard on Ubuntu 20.04. ceph-mgr-dashboard is dashboard module for ceph-mgr dashboard module for ceph-mgr dashboard module for ceph-mgr

Introduction

In this tutorial we learn how to install ceph-mgr-dashboard on Ubuntu 20.04.

What is ceph-mgr-dashboard

ceph-mgr-dashboard is:

Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

This package provides a ceph-mgr module, providing a web-based application to monitor and manage many aspects of a Ceph cluster and related components.

See the Dashboard documentation at http://docs.ceph.com/ for details and a detailed feature overview.

Package: ceph-mgr-dashboard Architecture: all Version: 15.2.12-0ubuntu0.20.04.1 Priority: optional Section: universe/admin Source: ceph Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Ceph Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 19092 Depends: ceph-mgr (>= 15.2.12-0ubuntu0.20.04.1), python3-bcrypt, python3-cherrypy3, python3-distutils, python3-jwt, python3-openssl, python3-routes, python3-werkzeug Filename: pool/universe/c/ceph/ceph-mgr-dashboard_15.2.12-0ubuntu0.20.04.1_all.deb Size: 3133512 MD5sum: dcf944ec523f17c7c97905de2f0cf330 SHA1: 7f9f410f2dd248787c99934c88f55af2e839eda2 SHA256: b0cc1d2f7b98bc82eec8ef729202eba00bed5aab34348c81ec70f542aaa4a557 SHA512: fae33e434fe86b53206b1512d4facc30cbdf860f51df48f617669b9f70c61c0a663cb7db7a0c0be492b229e3fe74a8b50119387d48f26f17838df34b8b7a19d0 Homepage: http://ceph.com/ Description-en: dashboard module for ceph-mgr Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

This package provides a ceph-mgr module, providing a web-based application to monitor and manage many aspects of a Ceph cluster and related components.

See the Dashboard documentation at http://docs.ceph.com/ for details and a detailed feature overview.

Package: ceph-mgr-dashboard Architecture: all Version: 15.2.1-0ubuntu1 Priority: optional Section: universe/admin Source: ceph Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Ceph Packaging Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 18554 Depends: ceph-mgr (>= 15.2.1-0ubuntu1), python3-bcrypt, python3-cherrypy3, python3-distutils, python3-jwt, python3-openssl, python3-routes, python3-werkzeug Filename: pool/universe/c/ceph/ceph-mgr-dashboard_15.2.1-0ubuntu1_all.deb Size: 2867028 MD5sum: 66dd18cb11edbe6a5369fb9db7e36934 SHA1: afacae1780dd44a3742045e9203fafc27904db96 SHA256: 4fb2642182e79cf0b4c2700cbd0072a0d6a0746733c9e0f510a0388fb0f4415e Homepage: http://ceph.com/ Description-en: dashboard module for ceph-mgr Ceph is a massively scalable, open-source, distributed storage system that runs on commodity hardware and delivers object, block and file system storage.

This package provides a ceph-mgr module, providing a web-based application to monitor and manage many aspects of a Ceph cluster and related components.

See the Dashboard documentation at http://docs.ceph.com/ for details and a detailed feature overview.

There are three methods to install ceph-mgr-dashboard 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 ceph-mgr-dashboard Using apt-get

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

sudo apt-get update

After updating apt database, We can install ceph-mgr-dashboard using apt-get by running the following command:

sudo apt-get -y install ceph-mgr-dashboard

Install ceph-mgr-dashboard Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ceph-mgr-dashboard using apt by running the following command:

sudo apt -y install ceph-mgr-dashboard

Install ceph-mgr-dashboard 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 ceph-mgr-dashboard using aptitude by running the following command:

sudo aptitude -y install ceph-mgr-dashboard

How To Uninstall ceph-mgr-dashboard on Ubuntu 20.04

To uninstall only the ceph-mgr-dashboard package we can use the following command:

sudo apt-get remove ceph-mgr-dashboard

Uninstall ceph-mgr-dashboard And Its Dependencies

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

sudo apt-get -y autoremove ceph-mgr-dashboard

Remove ceph-mgr-dashboard Configurations and Data

To remove ceph-mgr-dashboard configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge ceph-mgr-dashboard

Remove ceph-mgr-dashboard configuration, data, and all of its dependencies

We can use the following command to remove ceph-mgr-dashboard configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ceph-mgr-dashboard

References

Summary

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