linux 免密登錄
// 通過scp 命令將本機公鑰 追加到登錄機器的authorized_keys中
$ scp -p ~/.ssh/id_rsa.pub root@<remote_ip>:/root/.ssh/authorized_keys
// 或者
$ scp ~/.ssh/id_rsa.pub root@<remote_ip>:pub_key //將文件拷貝至遠程服務器
$ cat ~/pub_key >>~/.ssh/authorized_keys //將內(nèi)容追加到authorized_keys文件中钥星, 不過要登錄遠程服務器來執(zhí)行這條命令