Escreva um script de shell para iniciar e parar o serviço rsync

prefácio

         Use a porta de serviço de consulta do linux para julgar o início, parada e atualização do serviço de gatilho de condição de gravação


1. Concha

        Shell é um programa escrito em linguagem C, que é uma ponte para os usuários usarem o Linux. Shell é uma linguagem de comando e uma linguagem de programação. Shell refere-se a um programa aplicativo que fornece uma interface por meio da qual os usuários acessam os serviços do kernel do sistema operacional. O sh de Ken Thompson é o primeiro shell Unix, e o Windows Explorer é um shell típico de interface gráfica.

2. Escreva scripts de início e parada do serviço rsync

  • Verifique o comando de inicialização do serviço de acordo com /usr/lib/systemd/system/rsyncd.service
[root@controller init.d]# cat /usr/lib/systemd/system/rsyncd.service
[Unit]
Description=fast remote file copy program daemon
ConditionPathExists=/etc/rsyncd.conf

[Service]
EnvironmentFile=/etc/sysconfig/rsyncd
ExecStart=/usr/bin/rsync --daemon --no-detach "$OPTIONS"  #启动方法

Use o comando netstat -tunlp |grep rsync |wc -l para verificar se o serviço está ativado, o que é conveniente para julgamento condicional no script

[root@controller init.d]# cat rsync 
#!/bin/bash
status=`netstat -tunlp |grep rsync |wc -l`

if [ "$1" = "start" ]
  then
    /usr/bin/rsync --daemon
  if [ "$status" -lt 1 ]
    then 
      sleep 2
      echo "Rsync started !!"
  else
    echo "Rsync already Started!"
  fi
elif [ "$1" = "stop" ]
  then 
    if [ "$status" -gt 0 ]
      then
        killall rsync
        sleep 2
        echo "Rsync stoped !!"
    else
      echo "Get something wrong,please check the status"
    fi
elif [ "$1" = "restart" ]
  then
    killall rsync
    echo "Rsync stopping!!"
    sleep 2
    echo "Rsync stoped !!"
    if [ "$status" -lt 1 ]
      then
        /usr/bin/rsync --daemon
        echo "Rsync starting!!"
    else
      echo "Rsync already Started!"
    fi
    /usr/bin/rsync --daemon
else
  echo "Usage ./rsync {start|stop|restart}"
fi

3. Execute o teste

[root@controller init.d]# ./rsync.sh 
Usage ./rsync {start|stop|restart}
[root@controller init.d]# netstat -ntpl |grep rsync
[root@controller init.d]# ./rsync.sh start
Rsync started !!
[root@controller init.d]# netstat -ntpl |grep rsync
tcp        0      0 127.0.0.1:873           0.0.0.0:*               LISTEN      8099/rsync          
[root@controller init.d]# ./rsync.sh stop
Rsync stoped !!
[root@controller init.d]# netstat -ntpl |grep rsync
[root@controller init.d]# ./rsync.sh restart
Rsync stopping!!
Rsync stoped !!
Rsync starting!!
[root@controller init.d]# netstat -ntpl |grep rsync
tcp        0      0 127.0.0.1:873           0.0.0.0:*               LISTEN      8161/rsync   

Acho que você gosta

Origin blog.csdn.net/TttRark/article/details/131177430
Recomendado
Clasificación