Starting at Boot-Time
If you want your mysql db 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 mysqld as root. Before doing this ensure that your server is properly configured for security and access restrictions.
Login with root privileges :
# chkconfig mysqld --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 mysqld on
Starting apache server at boot-time click here
If you want your mysql db 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 mysqld as root. Before doing this ensure that your server is properly configured for security and access restrictions.
Login with root privileges :
# chkconfig mysqld --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 mysqld on
Starting apache server at boot-time click here
0 comments:
Post a Comment