我试图轻松地将一些数据rsync
从一台服务器移动到另一台服务器,而无需实际手动连接并执行所有这些操作,而仅将 IP 作为参数提供。
# -- Variables
my_key="my_key"
new_ct="${2}"
old_ct="${1}"
# -- SHH key generation on the localhost
mkdir /tmp/keys/
cd /tmp/keys
ssh-keygen -t ed25519 -f /tmp/keys/id_ed25519 -q -N ""; \
# -- Copy the keys on the old_ct
scp -P 2222 -o StrictHostKeyChecking=no -i ${HOME}/.ssh/${my_key} \ /tmp/keys/id_* root@${old_ct}:~/.ssh/
# -- Copy the key to new_ct and write it to authorized_keys file
scp -P 2222 -o StrictHostKeyChecking=no -i ${HOME}/.ssh/${my_key} \
/tmp/keys/id_ed25519.pub root@${new_box}:~/.ssh/
ssh -o StrictHostKeyChecking=no root@${new_ct} -p 2222 -i ${HOME}/.ssh/${my_key} \
"cat ~/.ssh/id_ed25519.pub >> ~/.ssh/authorized_keys"
# -- Lastly, start the rsync transfer on the old_ct in a detached screen session
ssh -o StrictHostKeyChecking=no root@${old_ct} -p 2222 -i ${HOME}/.ssh/${my_key} \
"
screen -dmLS "migrating.localdata.to.newCT" \
bash -c "rsync -azvhHSP --stats -e \
'ssh -p 2222 -o StrictHostKeyChecking=no' \
/home/user root@${new_ct}:/home"
"
# -- Remove the keys
rm -rf /tmp/keys
脚本的最后一部分,rsync
即不起作用的部分。其余的工作完美无缺。
双引号内有双引号(例如,
"migrating.localdata.to.newCT"
)。您需要转义内部双引号才能按字面意思对待。顺便说一句,您不必
bash -c
在屏幕后运行。您只需在屏幕后添加命令和参数,它就会运行它们。这将为您节省一些嵌套引号和转义。