linux中守護程式啟停工具start-stop-daemon

YatHo發表於2017-10-17
1.功能作用 
啟動和停止系統守護程式 

2.位置 
/sbin/start-stop-daemon 

3.主要引數 
Commands: 
-S|--start -- <argument> ... 開啟一個系統守護程式,並傳遞引數給它 
-K|--stop 停止一個程式 
-T|--status 得到程式的狀態 
-H|--help 顯示幫助資訊 
-V|--version 列印版本資訊 
Matching options (at least one is required): 
-p|--pidfile <pid-file> pid file to check 
-x|--exec <executable> program to start/check if it isrunning 
-n|--name <process-name> process name to check 
-u|--user <username|uid> process owner to check 
Options: 
-g|--group <group|gid> 按指定使用者組許可權執行程式 
-c|--chuid <name|uid[:group|gid]> 
按指定使用者、使用者組許可權執行程式 
-s|--signal <signal> signal to send (default TERM) 
-a|--startas <pathname> program to start (default is<executable>) 
-r|--chroot <directory> chroot to <directory>before starting 
-d|--chdir <directory> change to <directory>(default is /) 
-N|--nicelevel <incr> add incr to the process' nicelevel 
-P|--procsched <policy[:prio]> 
use <policy> with <prio> for the kernel 
process scheduler (default prio is 0) 
-I|--iosched <class[:prio]> use <class> with<prio> to set the IO 
scheduler (default prio is 4) 
-k|--umask <mask> 在開始執行前設定<mask> 
-b|--background 後臺執行 
-m|--make-pidfile 當命令本身不建立pidfile時,由start-stop-daemon建立 
-R|--retry <schedule> 等待timeout的時間,檢查程式是否停止,如果沒有傳送KILL訊號; 
-t|--test 測試模式 
-o|--oknodo exit status 0 (not 1) if nothing done 
-q|--quiet 不要輸出警告 
-v|--verbose 顯示執行過程資訊 

5.應用 
1、開啟一個daemon程式 
start-stop-daemon --start --background --exec /root/proxy.py 

2、關閉一個daemon程式 
start-stop-daemon --stop --name proxy.py

  

相關文章