このセクションでは、SCP コマンドを使ってファイルを転送する方法を紹介します。

ローカルファイルをリモートへ転送

ローカルファイルをリモートホストへ転送する場合には、以下のようなコマンドを実行します。ここでは、ローカルファイル( /etc/nginx/nginx.conf )を リモートホスト( 192.168.25.100 )の /tmp/ ディレクトリに転送しています。

[root@redis-1 ~]# scp /etc/nginx/nginx.conf root@192.168.25.100:/tmp/
The authenticity of host '192.168.25.100 (192.168.25.100)' can't be established.
ECDSA key fingerprint is SHA256:nSvFxr8Ve7tSunKmMDpXVtqOKmcF+l9O2dSUVukjApU.
ECDSA key fingerprint is MD5:0d:cd:dd:a2:d1:0c:94:9b:6a:af:a5:72:77:21:f3:7d.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.25.100' (ECDSA) to the list of known hosts.
root@192.168.25.100's password: 
nginx.conf                                    100%  643    95.2KB/s   00:00    
[root@redis-1 ~]#