Hướng dẫn cài Phpmyadmin trên Ubuntu 18 - 21102019

Breaking

Post Top Ad

Responsive Ads Here

Post Top Ad

Responsive Ads Here

Thursday, September 5, 2019

Hướng dẫn cài Phpmyadmin trên Ubuntu 18

Step 1: Download and Install phpMyAdmin

phpMyAdmin is included in Ubuntu 18.04 software repository, so we can easily install it with the following command.
sudo apt update
sudo apt install phpmyadmin
During the installation, it will prompt you to select a web server to configure. Nginx isn’t in the list, so press the Tab key and hit OK to skip this step.
install-phpmyadmin-ubuntu 18.04
Next, select Yes to create a new database and let dbconfig-common to configure it.
phpmyadmin nginx ubuntu 18.04
This will also create a new database user named phpmyadmin. Give this user a password.
phpmyadmin-password-lemp-ubuntu 18.04
Once done, a new database named phpmyadmin is created and the database user phpmyadmin has necessary privileges to manage this database. If you are curious as I am, you can log into MariaDB and check what privileges phpmyadmin user has been granted.


The installation will now finish. For the Nginx web server to find and serve the phpMyAdmin files correctly, we’ll need to create a symbolic link from the installation files to Nginx’s document root directory:

  • sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin


Your phpMyAdmin installation is now operational. To access the interface, go to your server’s domain name or public IP address followed by /phpmyadmin in your web browser:
https://server_domain_or_IP/phpmyadmin
phpMyAdmin login screen

No comments:

Post a Comment

Post Top Ad

Responsive Ads Here