How to Install "adminer" Package on Ubuntu 22.04?

Jun 28, 2022 . Admin

Hi Guys,

In this quick example, let's see Resources related to install adminer ubuntu. if you want to see example of Step-by-step – Adminer Ubuntu 22.04 Installation Guide then you are a right place. This tutorial will give you simple example of Adminer on Ubuntu 22.04 LTS. I’m going to show you about Cara install Adminer di Ubuntu.

You can use this post for ubuntu 14.04, ubuntu 16.04, ubuntu 18.4, ubuntu 20.04, ubuntu 21 and ubuntu 22.04 versions.

Step 1: Update System Dependencies

Make sure that all your system packages are up-to-date with running the following command:

sudo apt update -y && sudo apt upgrade -y
Step 2: Install adminer

You can Install Adminer by entering the following commands in the terminal:

$ sudo apt install adminer
Step 3: Enable configuration

Please note that apart from Apache PHP required to run Adminer. To activate the Adminer app run any one of the following commands:

$ sudo a2enconf adminer.conf
Step 4: Restart Apache Server

following command on command line to restart apache server:

sudo systemctl reload apache2
Step 5: Test the installation

You can access the Adminer app using the following URL format:

https://your-server-name/adminer/
https://your-server-ip/adminer/
Step 6: Uninstall Adminer

In case you want to later uninstall Adminer, you can do it using this command:

$ sudo apt remove adminer
#Ubuntu