rsync サービスを開始および停止するシェル スクリプトを作成します。

序文

         Linuxのクエリサービスポートを利用して、書き込み条件トリガーサービスの開始、停止、更新を判断します


1. シェル

        Shell は C 言語で書かれたプログラムで、ユーザーが Linux を使用するための橋渡しをします。シェルはコマンド言語であると同時にプログラミング言語でもあります。シェルとは、ユーザーがオペレーティング システム カーネルのサービスにアクセスするためのインターフェイスを提供するアプリケーション プログラムを指します。Ken Thompson の sh は最初の Unix シェルであり、Windows Explorer は典型的なグラフィカル インターフェイス シェルです。

2. rsync サービスの開始および停止スクリプトを作成する

  • /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"  #启动方法

netstat -tunlp |grep rsync |wc -l コマンドを使用して、サービスが有効かどうかを確認します。これは、スクリプトでの条件判断に便利です。

[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. テストを実行する

[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   

おすすめ

転載: blog.csdn.net/TttRark/article/details/131177430