我是靠谱客的博主 阔达口红,这篇文章主要介绍启动rsync服务的脚本并能用chkconfig管理1. 创建脚本2. 脚本前端加入3. 拷贝到/etc/init.d目录4. 加入chkconfig5. 启动服务,现在分享给大家,希望可以做个参考。
1. 创建脚本
复制代码
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
36
37
38
39
40
41
42
43
44
45
# Description:
#!/bin/bash
# chkconfig: 2345 31 61 # 设置chkconfig 级别
# description: start or stop rsync daemon # 描述
. /etc/init.d/functions
pidfile=/var/run/rsyncd.pid
RETVAL=0
start_rsync(){
if [ -f $pidfile ];then # 判断pid文件,存在就不再启动
echo "Rsync is already running"
else
rsync --daemon
action "Rsync starts successfully " /bin/true
fi
}
stop_rsync(){
if [ -f $pidfile ];then
kill -USR2 `cat $pidfile`
rm -rf $pidfile # 停止服务,就删除pid文件
action "Rsync stops successfully" /bin/true
else
action "Rsync is already stopped.Stop Failed" /bin/false
fi
}
case "$1" in
start)
start_rsync
RETVAL=$?
;;
stop)
stop_rsync
RETVAL=$?
;;
restart)
stop_rsync
sleep 2
start_rsync
RETVAL=$?
;;
*)
echo "Usage:$0 start|stop|restart"
exit 1
esac
exit $RETVAL
2. 脚本前端加入
复制代码
1
2
# chkconfig: 2345 31 61
# description: start or stop rsync daemon
3. 拷贝到/etc/init.d目录
复制代码
1
2
3
cp rsync.sh /etc/init.d/rsyncd
cd /etc/init.d
chmod +x rsyncd
4. 加入chkconfig
复制代码
1
2
3
chkconfig --add rsyncd
chkconfig --list rsyncd
syncd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
5. 启动服务
复制代码
1
2
service rsyncd start
#因为是根据/var/run/rsyncd.pid是否存在判断进程是否开启,第一次启动时确保没有该pid文件
最后
以上就是阔达口红最近收集整理的关于启动rsync服务的脚本并能用chkconfig管理1. 创建脚本2. 脚本前端加入3. 拷贝到/etc/init.d目录4. 加入chkconfig5. 启动服务的全部内容,更多相关启动rsync服务的脚本并能用chkconfig管理1.内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复