Forums / Install & configuration / Apache and MySQL don't start after reboot
Odd Erik Pedersen
Tuesday 17 June 2003 11:50:46 pm
I installed eZpublish with the innstaller for RedHat 9. Before the installation I made sure that there wasn't already running another version of apache or mysql. The installation went fine and the demo site came up :-) But after a reboot of the server neither apache or mysql starts automaticly :-(What do I do?
Mike Socher
Wednesday 18 June 2003 5:12:07 am
Mysql should come up after reboot on it's own from if you used the installer. That's what I have found anyway. To help you with apache try the options below. I posted this in an earlier thread.
/opt/ezpublish/apache_1.3.27/bin. Then you can run the Apache script (apachectl -k stop, apachectl -k start, apachectl -k restart, apachectl -k graceful).
make sure you start the script with ./
Bruce Morrison
Wednesday 18 June 2003 4:47:38 pm
Use the command /sbin/chkconfig --list to see what services are being started in the various run levels.
Look for the following lines httpd 0:off 1:off 2:off 3:on 4:on 5:on 6:offmysqld 0:off 1:off 2:off 3:on 4:on 5:on 6:off
Make sure that 3:on and 5:on are present. If they are not run the following commands
/sbin/chkconfig httpd on/sbin/chkconfig mysqld on
to makes the services start when the system is booted.
These commands need to be run as the root user.
Cheers BrucedesignIT
My Blog: http://www.stuffandcontent.com/ Follow me on twitter: http://twitter.com/brucemorrison Consolidated eZ Publish Feed : http://friendfeed.com/rooms/ez-publish
Friday 20 June 2003 5:39:32 am
Thanks!
But no luck! Here's what happens:
codex# /sbin/chkconfig httpd onerror reading information on service httpd: No such file or directory
codex# /sbin/chkconfig mysqld onerror reading information on service mysqld: No such file or directory
I guess the eZ install scripts failes somehow... is there possible to add startupscripts for httpd and mysqld manually?
Friday 20 June 2003 5:51:11 am
Oh... I wrote startupscripts... but I don't really know what is missing. Startupscript is just a guess.