linux註冊服務

2021-08-18 12:51:03 字數 771 閱讀 4766

建立 myservice 檔案,並編輯

mkdir myservice

vim myservice

1、在檔案的開頭必須加上

# chkconfig: - 85 15

# description: 描述

如果不加上面的注釋,那麼執行chkconfig --add myservice 時會報錯service yz does not support chkconfig

2、執行chkconfig --add myservice 前,檢查檔案是不是可執行檔案

3、chmod -x myservice(可執行操作(如果需要))

4、chkconfig --add myservice

5、chkconfig --del myservice

6、chkconfig --list

例子:

# chkconfig: - 85 15

# description: mytest

start

() stop

() status

() case

"$1"

in start)

start

;;stop)

stop

;;status)

status

;;*)

echo $"usage: $0 "

exit

1esac

Linux 系統服務註冊

linux 註冊系統服務 1 chkconfig 先在 etc init.d資料夾下新增服務的啟動 停止指令碼 然後執行命令 chkconfig list 可以看到當前系統的所有服務並且看到服務的狀態,例如 syslog 0 off 1 off 2 on 3 on 4 off 5 on 6 off ...

Linux 註冊系統服務

像mysql,ssh這些我們都可以用service mysqld start類似的命令來啟動 關閉等,那我們如何把我們自己的程式也按照如此的方式來進行管理呢?1.進入 etc init.d,建立檔案 d,其內容形如以下 shell bin bash chkconfig 90 10 descripti...

Linux 註冊系統服務

像mysql,ssh這些我們都可以用service mysqld start類似的命令來啟動 關閉等,那我們如何把我們自己的程式也按照如此的方式來進行管理呢?1.進入 etc init.d,建立檔案 d,其內容形如以下 bin bash chkconfig 90 10 description tes...