Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
11
rated 0 times [  11] [ 0]  / answers: 1 / hits: 161859  / 3 Years ago, fri, november 5, 2021, 4:17:12

I have installed LAMP on Ubuntu 12.10, and I want to access PhpMyAdmin, but I don't know it's URL.


I tried to access this URL : http://localhost/phpmyadmin


But I got this problem :



Not Found


The requested URL /phpmyadmin was not found on this server.


Apache/2.2.22 (Ubuntu) Server at localhost Port 80



And these are the instructions I followed to install lamp:


http://www.howtoforge.com/ubuntu_lamp_for_newbies


More From » lamp

 Answers
3

Assuming you followed those installation instructions to the letter, phpmyadmin should at least be installed on your computer. However, Apache configuration needs to be added for it to work.



When you installed phpmyadmin, it should have automatically set up its configuration for Apache, making it accessible at http://localhost/phpmyadmin/ (it's possible you may need the trailing slash?).



However, in case it didn't, you can re-run the initial configuration step with the following command:



sudo dpkg-reconfigure -plow phpmyadmin


When changing Apache configuration, it should usually restart Apache automatically, but in case it doesn't, you can always restart Apache with:



sudo service apache2 reload


(Some changes require restart instead of reload).


[#32194] Saturday, November 6, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
sharall

Total Points: 407
Total Questions: 127
Total Answers: 121

Location: Saint Helena
Member since Fri, Mar 26, 2021
3 Years ago
;