Awa Melvine
Awa Melvine

Reputation: 4087

How to get phpmyadmin after 'sudo apt-get install lampp-server^

I am a newbie in linux programming. I just install lamp server using the command sudo apt-get install lampp-server^ Now the problem is that when i place my website files in /var/www/html folder, it displays the webpages but i need phpmyadmin to create the database. Does the above command not install phpmyadmin or do i need to manually install it myself?

Thanks for any help..

Upvotes: 1

Views: 290

Answers (1)

Junaid
Junaid

Reputation: 603

Do this

 sudo apt-get install phpmyadmin

This will install phpmyadmin. Once installed run the following command

sudo dpkg-reconfigure -plow phpmyadmin

A wizard should appear, select Apache2 from the list (you need to hit spacebar to select). And then restart apache and check again.

You can check this post for details.

Upvotes: 1

Related Questions