Home > Article > Operation and Maintenance > Where is the phpmyadmin installed on ubuntu?
phpMyAdmin is a visual MySQL management tool. You can use the apt command to install it on Ubuntu. So where is phpMyAdmin after installation?
Where is the phpmyadmin installed by Ubuntu?
The phpMyAdmin installed by Ubuntu is in the /usr/share/ directory , the path of phpMyAdmin is /usr/share/phpmyadmin
.
(Online video tutorial sharing: linux video tutorial)
Let’s take a look at the installation method:
1. Install
sudo apt install phpmyadmin
2. Create a soft link to /var/www/html
sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin
3. Visit
Next, open the browser and enter http:/ /localhost, go to your server directory, there is already phpmyadmin, click it to open the login interface, enter your account name and password, you can log in smoothly and use the MySQL database happily.
The above is the detailed content of Where is the phpmyadmin installed on ubuntu?. For more information, please follow other related articles on the PHP Chinese website!