How To Install mariadb-plugin-gssapi-server on Ubuntu 20.04

In this tutorial we learn how to install mariadb-plugin-gssapi-server on Ubuntu 20.04. mariadb-plugin-gssapi-server is GSSAPI authentication plugin for MariaDB server GSSAPI authentication plugin for MariaDB server

Introduction

In this tutorial we learn how to install mariadb-plugin-gssapi-server on Ubuntu 20.04.

What is mariadb-plugin-gssapi-server

mariadb-plugin-gssapi-server is:

This plugin includes support for Kerberos on Unix, but can also be used for Windows authentication with or without domain environment.

This package contains the server parts.

Package: mariadb-plugin-gssapi-server Architecture: amd64 Version: 1:10.3.22-1ubuntu1 Multi-Arch: same Priority: optional Section: universe/database Source: mariadb-10.3 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian MySQL Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 95 Depends: libgssapi-krb5-2 (>= 1.17), mariadb-server-10.3, libc6 (>= 2.14), libkrb5-3 (>= 1.13~alpha1+dfsg) Breaks: mariadb-gssapi-server-10.1, mariadb-gssapi-server-10.2 Replaces: mariadb-gssapi-server-10.1, mariadb-gssapi-server-10.2 Filename: pool/universe/m/mariadb-10.3/mariadb-plugin-gssapi-server_10.3.22-1ubuntu1_amd64.deb Size: 17092 MD5sum: bbb1b77eded5ace23adfe390a54bad32 SHA1: aa82f7ef6e4520faf10a390cfba0636d8956c899 SHA256: 60f938e8b494240a4c43f3b984ba7db6bbd64192cf26438a5b5a3a6f98d931db Homepage: https://mariadb.org/ Description-en: GSSAPI authentication plugin for MariaDB server This plugin includes support for Kerberos on Unix, but can also be used for Windows authentication with or without domain environment.

This package contains the server parts.

There are three methods to install mariadb-plugin-gssapi-server 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 mariadb-plugin-gssapi-server Using apt-get

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

sudo apt-get update

After updating apt database, We can install mariadb-plugin-gssapi-server using apt-get by running the following command:

sudo apt-get -y install mariadb-plugin-gssapi-server

Install mariadb-plugin-gssapi-server Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install mariadb-plugin-gssapi-server using apt by running the following command:

sudo apt -y install mariadb-plugin-gssapi-server

Install mariadb-plugin-gssapi-server 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 mariadb-plugin-gssapi-server using aptitude by running the following command:

sudo aptitude -y install mariadb-plugin-gssapi-server

How To Uninstall mariadb-plugin-gssapi-server on Ubuntu 20.04

To uninstall only the mariadb-plugin-gssapi-server package we can use the following command:

sudo apt-get remove mariadb-plugin-gssapi-server

Uninstall mariadb-plugin-gssapi-server And Its Dependencies

To uninstall mariadb-plugin-gssapi-server and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove mariadb-plugin-gssapi-server

Remove mariadb-plugin-gssapi-server Configurations and Data

To remove mariadb-plugin-gssapi-server configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge mariadb-plugin-gssapi-server

Remove mariadb-plugin-gssapi-server configuration, data, and all of its dependencies

We can use the following command to remove mariadb-plugin-gssapi-server configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge mariadb-plugin-gssapi-server

References

Summary

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