您的位置:首页 > 运维架构

start-stop-daemon命令

2013-05-24 13:27 204 查看
start-stop-daemon命令
2012年07月04日

软件安装 ⁄
暂无评论

1.功能作用

启动和停止系统守护程序

2.位置

/sbin/start-stop-daemon


3.格式用法

start-stop-daemon [

...]


4.主要参数

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

Commands:
 -S|--start--
<argument>... 开启一个系统守护程序,并传递参数给它

  -K|--stop                    停止一个程序

 -T|--status                  得到程序的状态

  -H|--help                    显示帮助信息

 -V|--version                 打印版本信息

Matchingoptions
(atleast
one isrequired):
  -p|--pidfile<pid-file>      pid
file to
check
 -x|--exec<executable>       program
to start/check
if it
isrunning
  -n|--name<process-name>     process
name tocheck

 -u|--user<username|uid>     process
owner tocheck

Options:
  -g|--group<group|gid>       按指定用户组权限运行程序

 -c|--chuid<name|uid[:group|gid]>
                               按指定用户、用户组权限运行程序

 -s|--signal<signal>         signal
to send
(defaultTERM)

  -a|--startas<pathname>      program
to start
(defaultis
<executable>)
 -r|--chroot<directory>      chroot
to <directory>before
starting
  -d|--chdir<directory>       change
to <directory>(default
is /)
 -N|--nicelevel<incr>        add
incr tothe
process'nice
level
  -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
(defaultprio
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
status0
(not1)
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


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: