在CentOS系統下,主要有兩種方法設置自己安裝的程序開機啟動。
1、把啟動程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是設置開機啟動httpd。
#!/bin/sh## This script will be executed *after* all the other init scripts.# You can put your own initialization stuff in here if you don't# want to do the full Sys V style init stuff. touch /var/lock/subsys/local/usr/local/apache/bin/apachectl start
2、把寫好的啟動腳本添加到目錄/etc/rc.d/init.d/,然后使用命令chkconfig設置開機啟動。
chkconfig 功能說明:檢查,設置系統的各種服務。
語法:chkconfig [--add][--del][--list][系統服務] 或 chkconfig [--level <等級代號>][系統服務][on/off/reset]
--add 添加服務
--del 刪除服務
--list 查看各服務啟動狀態
比如我們設置自啟動mysql:
#將mysql啟動腳本放入所有腳本運行目錄/etc/rc.d/init.d中cp /lamp/mysql-5.0.41/support-files/mysql.server /etc/rc.d/init.d/mysqld#改變權限chown root.root /etc/rc.d/init.d/mysqld#所有用戶都可以執行,單只有root可以修改chmod 755 /etc/rc.d/init.d/mysqld#將mysqld 放入linux啟動管理體系中chkconfig --add mysqld#查看全部服務在各運行級狀態chkconfig --list mysqld#只要運行級別3啟動,其他都關閉chkconfig --levels 245 mysqld off
例如:我們把httpd的腳本寫好后放進/etc/rc.d/init.d/目錄,使用
chkconfig --add httpdchkconfig httpd on
命令即設置好了開機啟動。
3、把啟動程序的命令添加到/etc/rc.d/rc.sysinit 文件中
腳本/etc/rc.d/rc.sysinit,完成系統服務程序啟動,如系統環境變量設置、設置系統時鐘、加載字體、檢查加載文件系統、生成系統啟動信息日志文件等
比如我們設置自啟動apache:
echo "/usr/local/apache2/bin/apachectl start" >> /etc/rc.d/rc.sysinit
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。
新聞熱點
疑難解答
圖片精選