What is my phpmyadmin's url?

I'm a newbie with linux ubuntu and phpmyadmin. I had an url to access phpmyadmin thru the webbrowser, but since i did not use it for like a year now, i can't remember the url.

I believe it was something like - example ip: 123.123.123.123/phpMyAdmin But when I change that to my actual server's ip, it doesn't work.

Is there a file that shows which url to use to access phpmyadmin?

Problem solved, I had to include port after the ip for it to work ^^

4

1 Answer

Find apache.conf file of phpMyAdmin, regularly, it’s under /etc/phpmyadmin/ on Linux environment. Please edit this file with root authority:

# phpMyAdmin default Apache configuration
Alias /phpmyadmin /usr/share/phpmyadmin
Change this –“Alias /phpadmin /usr/share/phpmyadmin” like this one ”
Alias /secretcode /usr/share/phpmyadmin, secretcode stands for a series of letters as a symbol, but hard to recognize, for instance ‘@34%6tFd&hs’. So:
# phpMyAdmin default Apache configuration
Alias /@34%6tFd&hs /usr/share/phpmyadmin

Restart your web-server

sudo /etc/init.d/apache2 restart

Now you may try the new URL

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like