myslq.server的啟動腳本程式=》 複制/etc/rc.d/init.d目錄
[root@localhost ~]# cd /etc/rc.d/init.d
複制并重命名為mysql
[root@localhost init.d]# cp /usr/local/mysql/support-files/mysql.server mysql
更改屬性改為“x”(executable,可執行)
[root@localhost init.d]# chmod +x mysql
添加到系統的啟動服務組中
chkconfig --add mysql
啟動服務
service mysql start
另:确認
chkconfig --list [name] 用來清單服務 來确認
chkconfig --list [mysql] 或 chkconfig --list
chkconfig --add name 添加服務
chkconfig --del name 删除服務
2. Apache 自動啟動的配置
方法一:
apachectl指令拷貝至/etc/rc.d/init.d目錄下,改名為httpd
使用編輯器打開httpd檔案,并在第一行#!/bin/sh下增加兩行文字如下
# chkconfig: 35 70 30
# description: Apache
接着注冊該服務
chkconfig --add httpd
service httpd start
其中所增加的第二行中三個數字第一個表示在運作級别3和5下啟動apache,
第二、三是關于啟動和停止的優先級配置,無關緊要
方法二: 在/etc/rc.d/rc.local中增加啟動apache的指令,例如:/usr/local/httpd/bin/apachectl start
啟動服務
本文轉自 小強測試幫 51CTO部落格,原文連結:http://blog.51cto.com/xqtesting/808395,如需轉載請自行聯系原作者