Posts

Showing posts with the label Install phpMyAdmin on Ubuntu Server 20.10

Install phpMyAdmin on Ubuntu Server 20.10

 Install phpMyAdmin on Ubuntu Server 20.10 :-  Step 1: Install Apache sudo apt update sudo apt install apache2 sudo systemctl stop apache2.service sudo systemctl start apache2.service sudo systemctl enable apache2.service http://localhost Step 2: Install MariaDB sudo apt install mariadb-server mariadb-client sudo systemctl stop mariadb.service sudo systemctl start mariadb.service sudo systemctl enable mariadb.service sudo mysql_secure_installation When prompted, answer the questions below by following the guide. Enter current password for root (enter for none): Just press the Enter Set root password? [Y/n]: Y New password: Enter password Re-enter new password: Repeat password Remove anonymous users? [Y/n]: Y Disallow root login remotely? [Y/n]: N Remove test database and access to it? [Y/n]:  Y Reload privilege tables now? [Y/n]:  Y Restart MariaDB server sudo systemctl restart mariadb.service sudo mysql Then run the commands below to change to disable mysql_native_p...