PHPMyAdmin on Digital Ocean
sudo apt-get install phpmyadmin
If you’re using apache server, then do this:
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo a2enconf phpmyadmin.conf
sudo service apache2 reload
If you’re using Nginx, then do this:
sudo ln -s /user/share/phpmyadmin /var/www/public_html/phpmyadmin
nginx -s reload