Shell 增加server rsync 控制脚本
发布日期:2021-11-09 11:16:30 浏览次数:36 分类:技术文章

本文共 1734 字,大约阅读时间需要 5 分钟。

[root@backup ~]# vim /etc/init.d/rsync
#!/bin/bash 
#this script for start|stop rsync daemon service 
status1=$(ps -ef | egrep "rsync --daemon.*rsyncd.conf" | grep -v 'grep') 
pidfile="/var/run/rsyncd.pid" 
start_rsync="rsync --daemon --config=/etc/rsyncd/rsyncd.conf" 
  
                    #start rsync
function rsyncstart() { 
    if [ "${status1}X" == "X" ];then 
        rm -f $pidfile       
        ${start_rsync}   
        status2=$(ps -ef | egrep "rsync --daemon.*rsyncd.conf" | grep -v 'grep') 
        if [  "${status2}X" != "X"  ];then
            echo "rsync service start.......OK"     
        fi 
    else 
        echo "rsync service is running !"    
    fi 
  
                  #stop rsync
function rsyncstop() { 
    if [ "${status1}X" != "X" ];then 
        
kill -9 $(cat $pidfile)                               #读取并结束 进程 pid号
        status2=$(ps -ef | egrep "rsync --daemon.*rsyncd.conf" | grep -v 'grep') 
        if [ "${statusw2}X" == "X" ];then 
            echo "rsync service stop.......OK" 
        fi 
    else 
        echo "rsync service is not running !"    
    fi 
  
              #status 
function rsyncstatus() { 
    if [ "${status1}X" != "X" ];then 
        echo "rsync service is running !"   
    else
         echo "rsync service is not running !"  
    fi 
           #restart
function rsyncrestart() { 
    if [ "${status1}X" == "X" ];then 
               echo "rsync service is not running..." 
               rsyncstart 
        else 
               rsyncstop 
               rsyncstart    
        fi       
}  
  
case $1 in 
        "start") 
               rsyncstart 
                ;; 
  
        "stop") 
               rsyncstop 
                ;; 
  
        "status") 
               rsyncstatus 
               ;; 
  
        "restart") 
               rsyncrestart 
               ;; 
  
        *) 
          echo 
                echo  "Usage: $0 start|stop|restart|status" 
          echo 
esac
(2)给脚本设置可执行权限:
[root@backup ~]# chmod a+x /etc/init.d/rsync
(3)启动与重启:
启动命令:    [root@backup ~]# service rsync start
重启命令:    [root@backup ~]# service rsync restart
或者可以停止后再次启动:
[root@backup ~]# service rsync stop
[root@backup ~]# service rsync start
总结:
1.
status1=$(ps -ef | egrep "rsync --daemon.*rsyncd.conf" | grep -v 'grep') 
     if [ "${status1}X" == "X" ];then 
这两句用来测试命令行有没有参数的
2.    
kill -9 $(cat $pidfile)                              
     #读取并结束 进程 pid号

转载地址:https://blog.csdn.net/zonghua521/article/details/78200225 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:FastDFS 配置文件 client.conf storage_ids.conf
下一篇:系统工程师 常用 工具 命令

发表评论

最新留言

感谢大佬
[***.8.128.20]2024年03月31日 20时39分28秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章