When server B (172.17.166.11) is powered on or restarted, it will automatically pull all the files in the specified directory on server A (172.17.166.10) 1. Create mutual trust between server B and server A
2. On Server B Create the following directory structure [root@w-11 home]# tree shell shell ├── logs ----directory └── pull_170.sh ----script The script is as follows: #!/bin/bash #pull_ #author:whz #date:20200805 #The non-existent variable terminates the script execution set -o nounset # Execution error terminates script execution set -o errexit # define restricted path PATH="/bin:/usr/bin:/sbin:/usr/sbin" # adirname - return absolute dirname of a given file adirname() { odir=`pwd`; cd `dirname $1`; pwd; cd "${odir}"; } MYNAM=`basename "$0"` MYDIR=`adirname "$0"` MYLOG_PATH="${MYDIR}/logs" MYLOG="${MYLOG_PATH}/${MYNAM}_`date +%F`.log" echo "`which rsync` -avtW --progress --delete [email protected]:/home/iis/ /home/iis/" >> ${MYLOG} `which rsync` -avtW --progress --delete [email protected]:/home/iis/ /home/iis/ >> ${MYLOG} exit 0 3. Crontab plan on server B
That’s it, done. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Summary of knowledge points about covering index in MySQL
<body> <div id="root"> <...
In this article, we would like to share with you ...
Copy code The code is as follows: <html> &l...
Table of contents JavaScript function call classi...
Copy code The code is as follows: <!DOCTYPE ht...
Table of contents 1. React.FC<> 2. class xx...
Copy code The code is as follows: <!DOCTYPE ht...
Table of contents 1. Customize the network to rea...
The layout problem of irregular picture walls enc...
This article uses an example to illustrate the ex...
1. Achieve the effect 2 Knowledge Points 2.1 <...
Table of contents 1. What are microtasks? 2. What...
In CentOS7, when we install MySQL, MariaDB will b...
SQL finds all duplicate records in a table 1. The...
Table of contents Preface optimization Derivative...