How to Install Phpmyadmin in Ubuntu Server?
Hi,
I am going to show you example of how to install phpmyadmin in ubuntu. This tutorial will give you simple example of install phpmyadmin ubuntu 20.04 apache2. This article will give you simple example of ubuntu server install phpmyadmin. i explained simply step by step phpmyadmin install linux ubuntu. Let's see bellow example ubuntu server 18.04 install phpmyadmin.
Here, i will give you list of commands step by step, how to install phpmyadmin in ubuntu 21.10, ubuntu 21.04, ubuntu 20.04, ubuntu 18.04 and ubuntu 16.04. So let's see following command and install phpmyadmin.
Install MySQL on Ubuntu
Update Local Package:
sudo apt update
Install MySQL Server:
sudo apt install mysql-server
Install Phpmyadmin:
sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl
Create User on MySQL:
you can create new user for mysql by using following query:
mysql -u root -p
CREATE USER 'root_new'@'localhost' IDENTIFIED BY 'rootnewpassword';
GRANT ALL PRIVILEGES ON * . * TO 'root_new'@'localhost';
FLUSH PRIVILEGES;
Now you can go to your browser and open IP or localhost then you will found bellow layout:
http://localhost/localhost/phpmyadmin
http://your_domain_or_IP/phpmyadmin
Output:
Solved Error: the requested url was not found on this server. phpmyadmin
IF it's still not open and you found following error:
"the requested url was not found on this server. phpmyadmin"
Then you can do it following step:
Open apache.conf file:
sudo nano /etc/apache2/apache2.conf
Then add following line to the end of file.
Include /etc/phpmyadmin/apache.conf
Restart Apache:
sudo /etc/init.d/apache2 restart
Now it will works.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Install PHP in Ubuntu Server?
- How to Install Apache Web Server on Ubuntu Server?
- How to Reliably Keep an SSH Tunnel Open in Server?
- How to Deny Access to a File using .htaccess?
- Angular 13 File Upload with Progress Bar Tutorial
- How to Connect SSH using ppk File Ubuntu?
- How to Connect to a Remote Server using SSH on Ubuntu?
- How to Upgrade PHP Version from 7.4 to 8 in Ubuntu?
- How to Enable Apache mod_rewrite Module in Ubuntu?
- How to Enable Rewrite Mode for Apache in Ubuntu?