Google GCP SSH登入筆記
想要從本機連到GCP VPS主機的方式
ssh-keygen -t rsa -C yourid@gmail.com ( -C 不用也可以 )
cat .ssh/id_rsa.pub
進入GCP後台ssh,把cat的內容貼到 /root/.ssh/authorized_keys
之後直接使用本機 ssh root@gcpip 即可用ssh登入
我其實有另一個需求,定期從本機去下載遠端的備份檔
rsync -avzh root@vpsip:/root/gcp/mysql ~/Desktop/gcp/
留言