启动rsync服务的脚本并能用chkconfig管理

1. 创建脚本

# 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. 脚本前端加入

# chkconfig: 2345 31 61
# description: start or stop rsync daemon

3. 拷贝到/etc/init.d目录

cp rsync.sh /etc/init.d/rsyncd
cd /etc/init.d
chmod +x rsyncd

4. 加入chkconfig

chkconfig --add rsyncd
chkconfig --list rsyncd
syncd           0:off   1:off   2:on    3:on    4:on    5:on    6:off

5. 启动服务

service rsyncd start 
#因为是根据/var/run/rsyncd.pid是否存在判断进程是否开启,第一次启动时确保没有该pid文件
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值