ssh-keygen -t rsa获取密钥
cat /root/.ssh/id_*.pub 查看密钥,黏贴到服务器的.ssh/authorized_keys中(用户家目录)
vi scp.sh
#!/bin/bash
IP=`hostname -I | awk '{print $2}'`;
#获取本机IP,有的不止一个IP
TIME=`date '+%Y%m%d'`;
scp -P 60522 /var/log/wtmp 用户名@IP:/home/systemlog/${TIME}_${IP}_wtmp
scp -P 60522 /var/log/btmp 用户名@IP:/home/systemlog/${TIME}_${IP}_btmp
scp -P 60522 /var/log/history 用户名@IP:/home/systemlog/${TIME}_${IP}_history