How can I start phpMyAdmin?

I have just installed phpMyAdmin on my Ubuntu (using sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin). I think installation went OK. So, how can I start the phpMyAdmin now?

I tried
I also tried

Both do not work.

I also need to add that I have installed Apache, PHP and MySQL. Everything works fine.

3 Answers

You need to update the file phpMyAdmin.conf to something like this:

<Directory /usr/share/phpMyAdmin/> order deny,allow #deny from all allow from all
</Directory>

or allow from <your IP address> if you intend to host this server.

2

In ubuntu by default, phpmyadmin is installed in /usr/share/phpmyadmin

Setting a symbolic link should help you. The command would be as follows :

$ ln -s /usr/share/phpmyadmin /var/www/phpmyadmin

After this, open in browser and it should work (given that your Apache settings permit this)

0

Have you tried ?

1

You Might Also Like