How To Install and Secure phpMyAdmin
How To Install and Secure phpMyAdmin Relational database management systems like MySQL are needed for a significant portion of web sites and applications. However, not all users feel comfortable administering their data from the command line. To solve this problem, a project called phpMyAdmin was created in order to offer an alternative in the form of a web-based management interface. In this guide, we will demonstrate how to install and secure a phpMyAdmin configuration on an Ubuntu 14.04 server. We will build this setup on top of the Nginx web server, which has a good performance profile and can handle heavy loads better than some other web servers. Before we begin, there are a few requirements that need to be settled. Ubuntu Server LEMP (Linux, Nginx, MySQL, and PHP) stack on your Ubuntu server. Install phpMyAdmin With our LEMP platform already in place, we can begin right away with installing the phpMyAdmin software. sudo apt-get update sudo apt-get install phpmyadmin During the in...