需求:A機器無密碼登錄到B機器 ssh
一、A機器執行 ssh-keygen -t rsa ,在~/.ssh/下生成id_rsa 和 id_rsa.pub兩個文件,其中id_rsa.pub是公匙 rsa
二、copy id_rsa.pub 到B機器上 ,cat id_rsa.pub > ~/.ssh/authorized_keys ,將公匙內容輸入到authorized_keys文件中 權限
三、設置權限 密碼
chmod 600 authorized_keys ssh-key
chmod 700 -R .ssh 文件
四、 OKauth