Starting at Boot-Time
If you want your apache web server to continue running after a system reboot, you should add a call to apachectl to your system startup files (typically rc.local or a file in an rc.N directory). This will start Apache as root. Before doing this ensure that your server is properly configured for security and access restrictions.
Login with root privileges :
# chkconfig httpd --list
httpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
It will display the above options, to enable auto start up for apache server use this command
# chkconfig httpd on
Starting mysql server at boot-time click here
If you want your apache web server to continue running after a system reboot, you should add a call to apachectl to your system startup files (typically rc.local or a file in an rc.N directory). This will start Apache as root. Before doing this ensure that your server is properly configured for security and access restrictions.
Login with root privileges :
# chkconfig httpd --list
httpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
It will display the above options, to enable auto start up for apache server use this command
# chkconfig httpd on
Starting mysql server at boot-time click here
0 comments:
Post a Comment