5

I installed php5 from the Software-Center and it came along with Apache2.

How can I install MySQL database along with phpMyAdmin?

Lucio
  • 18,843
footy
  • 361

2 Answers2

10

To install phpMyAdmin open the terminal (Ctrl+Alt+T) and enter this command: sudo apt-get install phpmyadmin

To run phpMyAdmin open your browser and, in the URL bar put this: http://localhost/phpmyadmin

Do no forget to restart Apache.

Lucio
  • 18,843
2

phpmyadmin install command :

sudo apt-get install phpmyadmin

You need to creat a symbolic link into your /var/www for starting phpmyadmin when you type : http://localhost/phpmyadmin

ln -s /etc/phpmyadmin /var/www/phpmyadmin
Benabra
  • 121
  • 3