← Deployment & Docker6 / 45
Koneksi Remote SSH & Pengiriman SCP
Perintah ssh user@ip terhubung ke server remote via SSH Key, dan scp menyalin berkas antar komputer/server.
👀 Contoh dulu
ssh -i key.pem ubuntu@203.0.113.195 scp -i key.pem build.zip ubuntu@203.0.113.195:/var/www/
Hasilnya: The authenticity of host '203.0.113.195' can't be established. ubuntu@203.0.113.195:~$ build.zip 100% 2148KB 1.2MB/s 00:01
💡 Simpan SSH Private Key di ~/.ssh/ id_rsa secara aman.
📝 Sekarang giliranmu
Tulis perintah SSH untuk masuk ke root@192.168.1.1.
Preview