1. 程式人生 > >設定linux開機啟動服務

設定linux開機啟動服務

寫部落格

本例以mysql為例

在要開始下面的命令步驟之前,需要先找到自己需要設定為開機自啟的軟體的服務檔案

 find -name mysql.server         我先找到mysq.server檔案

將要開機自啟動的服務檔案拷貝到init.d資料夾下(/usr/local/MySQL/support-files/mysql.server 是我用rpm安裝mysql的預設檔案路徑)

1、cp/usr/local/MySQL/support-files/mysql.server  /etc/init.d/mysql  

2、chmod +x /etc/init.d/mysql    賦予可執行許可權

3、chkconfig --add mysql

        新增服務

4、chkconfig --list             顯示服務列表


如果看到mysql的服務,並且3,4,5都是on的話則成功,如果是off,則鍵入

chkconfig --level 345 mysql on

5、reboot重啟電腦