Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I installed Wamp server some time ago and everything worked. I used it to develop a small homepage. After finishing the works on the homepage I did not use it about two weeks. Today I encountered that the apache server was not running for reasons unknown. I changed the listening port to 8080 instead of 80 and apache is now running but mysql is not. But it was running before I changed the listening port for apache server. Is there a config-file I forgot to change?

regards

share|improve this question

1 Answer

are the services turned on/correct? check Control Panel > Administrative Tools > Services to find if MySQL and Apache are there and set to start automatically. Try starting them if not and see if it works.

check the logs for MySQL and Apache:
APACHE_INSTALL_DIR\logs
(APACHE_INSTALL_DIR = C:\Program Files\Apache Software Foundation\Apache2.x\ ??)

MYSQL_INSTALL_DIR\data\sql*.log
(MYSQL_INSTALL_DIR = C:\Program Files\MySQL\MySQL Server 5.x\ ??)

the main config files for each are usually
APACHE_INSTALL_DIR\conf\httpd.conf
MYSQL_INSTALL_DIR\my.ini

changing the port of apache shouldn't affect mysql unless it's the same port, and mysql is likely not on 8080 (default is 3306)

share|improve this answer
Hi, Afer trying I have not been able to find a solution. Then I deinstalled a programm which was probably the source of the problem. After that I deinstalled WampServer, removed everything and reinstalled it. Everything is fine now. Thx for support. – user48243 Jul 14 '10 at 8:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.