Assalamu'alaykum warahmatullah wabarakatuh
Kali ini saya mau share cara tranfer file EZ (easy) melalui SSH. Mungkin agak ribet ya kalau file yang kita ingin transfer, harus di pindahkan ke flashdisk terlebh dahulu ke flashdisk, lalu memounting nya, lalu memindahkannya ke PC. Sangat tidak efisien. Maka dari itu, saya akan buatkan tutor tips&trik bagaimana cara transfer file yang mudah dan instant.
SCP
Aplikasi yang berguna untuk meremote dan transfer file. SCP ini hanya bisa dijalankan pada server yang menjalankan service SSH. Apabila anda sudah install SSH, seharusnya SCP juga sudah siap digunakan.Saya menggunakan 2 server untuk uji coba. Dan dua-duanya sudah di "enable root login" :
- Server networknjay : 192.168.40.210/24
- Server node1 : 192.168.40.220/24
OKE Lanjut..
1. Buat file nya di server node1. Lalu kirim ke server networknjay.
touch nyoba.txt
scp nyoba.txt user@ip/domain:~/
scp nyoba.txt user@ip/domain:~/
[root@node1 ~]# touch nyoba.txt
[root@node1 ~]# scp nyoba.txt root@192.168.40.220:~/
The authenticity of host '192.168.40.220 (192.168.40.220)' can't be established.
ECDSA key fingerprint is SHA256:XhtWg4T7W/UX6NKt5L1Vwmp8xc3LMiDSif6XYf3lWLM.
ECDSA key fingerprint is MD5:cb:9c:97:7b:5a:77:e8:93:de:95:4d:8b:83:99:17:4e.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.40.220' (ECDSA) to the list of known hosts.
root@192.168.40.220's password:
nyoba.txt 100% 0 0.0KB/s 00:00
The authenticity of host '192.168.40.220 (192.168.40.220)' can't be established.
ECDSA key fingerprint is SHA256:XhtWg4T7W/UX6NKt5L1Vwmp8xc3LMiDSif6XYf3lWLM.
ECDSA key fingerprint is MD5:cb:9c:97:7b:5a:77:e8:93:de:95:4d:8b:83:99:17:4e.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.40.220' (ECDSA) to the list of known hosts.
root@192.168.40.220's password:
nyoba.txt 100% 0 0.0KB/s 00:00
Sekarang kita cek apa file sudah diterima oleh server networknjay atau belum.
ls
[root@idn-shc ~]# ls
anaconda-ks.cfg nfs-server start
epel-release-latest-7.noarch.rpm nyoba_samba
epel-release-latest-7.noarch.rpm.1 nyoba.txt
2. Mengambil file.
scp user@ip/domain:~/(file) (file di server)
[root@node1 ~]# scp root@192.168.40.210:~/nyoba.txt ./hasilnya.txt
root@192.168.40.210's password:
nyoba.txt 100% 0 0.0KB/s 00:00
SCP Windows
1. Download aplikasi winscp. Lalu jalankan.Sip, mantap jiwah.
0 comments: