apache 和 mysql 开机启动和加入到 service 系统服务中

1.Apache

1.1.Apache 开机启动: 

echo "/usr/local/apache2/bin/apachectl start" >> /etc/rc.local

1.2.增加 httpd service 服务:

cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd

修改httpd文件:

vi /etc/rc.d/init.d/httpd

在文件头部加入如下内容:

### 
# Comments to support chkconfig on RedHat Linux 
# chkconfig: 2345 90 90 
# description:http server 
###

保存后键入命令:

chkconfig --add httpd 
chkconfig --level 3 httpd on
chkconfig --level 5 httpd on

测试:

servcie httpd start
service httpd restart
service httpd stop


2.Mysql

2.1.Mysql 开机启动:

cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld

2.2.增加 mysqld service 服务:

chkconfig --add mysqld
chkconfig --level 3 mysqld on
chkconfig --level 5 mysqld on

测试:

servcie mysqld start
service mysqld restart
service mysqld stop


注:level 3 和 level 5 分别表示字符模式和图形模式启动时自动开启服务。


参考:http://www.111cn.net/sys/linux/49030.htm

你可能感兴趣的:(apache 和 mysql 开机启动和加入到 service 系统服务中)