0

I am trying to install PHPMyAdmin on my Ubuntu 16 setup. I am using this document to do so: https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-phpmyadmin-on-ubuntu-16-04

But I am getting following error while installation: enter image description here

I even try to uninstall mysql completely for which I used following steps, but it did not work.

Removing MySQL 5.5 Completely

Dev
  • 212
  • 1
  • 14

1 Answers1

0

First of all You have to remove whole phpmyadmin from your system using

  1. sudo apt-get remove phpmyadmin mysql-server mysql-client
  2. sudo apt-get purge phpmyadmin mysql-server
  3. sudo apt-get autoremove
  4. sudo apt-get update
  5. sudo apt-get install phpmyadmin
  6. sudo apt-get install mysql-client mysql-server
Mayank
  • 56
  • 3