scp命令详解
scp是secure copy的简写,⽤于在Linux下进⾏远程拷贝⽂件的命令,和它类似的命令有cp,不过cp只是在本机进⾏拷贝不能跨服务器,⽽且scp传输是加密的。可能会稍微影响⼀下速度。当你服务器硬盘变为只读 read only system时,⽤scp可以帮你把⽂件移出来。另外,scp 还⾮常不占资源,不会提⾼多少系统负荷,在这⼀点上,rsync就远远不及它了。虽然 rsync⽐scp会快⼀点,但当⼩⽂件众多的情况
下,rsync会导致硬盘I/O⾮常⾼,⽽scp基本不影响系统正常使⽤。
1.命令格式:
scp [参数] [原路径] [⽬标路径]
2.命令功能:
scp是 secure copy的缩写, scp是linux系统下基于ssh登陆进⾏安全的远程⽂件拷贝命令。linux的scp命令可以在linux服务器之间复制⽂件和⽬录。
3.命令参数:
-1 强制scp命令使⽤协议ssh1
-2 强制scp命令使⽤协议ssh2
-4 强制scp命令只使⽤IPv4寻址
-6 强制scp命令只使⽤IPv6寻址
-B 使⽤批处理模式(传输过程中不询问传输⼝令或短语)
-C 允许压缩。(将-C标志传递给ssh,从⽽打开压缩功能)
-p 保留原⽂件的修改时间,访问时间和访问权限。
-q 不显⽰传输进度条。
-r 递归复制整个⽬录。
-v 详细⽅式显⽰输出。scp和ssh(1)会显⽰出整个过程的调试信息。这些信息⽤于调试连接,验证和配置问题。
-c cipher 以cipher将数据传输进⾏加密,这个选项将直接传递给ssh。
-F ssh_config 指定⼀个替代的ssh配置⽂件,此参数直接传递给ssh。
-i identity_file 从指定⽂件中读取传输时使⽤的密钥⽂件,此参数直接传递给ssh。
-l limit 限定⽤户所能使⽤的带宽,以Kbit/s为单位。
-o ssh_option 如果习惯于使⽤ssh_config(5)中的参数传递⽅式,
-P port 注意是⼤写的P, port是指定数据传输⽤到的端⼝号
-S program 指定加密传输时所使⽤的程序。此程序必须能够理解ssh(1)的选项。
4.使⽤实例:
scp命令的实际应⽤概述:
从本地服务器复制到远程服务器:
(1) 复制⽂件:
命令格式:
scp local_file remote_username@remote_ip:remote_folder
或者
scp local_file remote_username@remote_ip:remote_file
或者
scp local_file remote_ip:remote_folder
或者
scp local_file remote_ip:remote_file
第1,2个指定了⽤户名,命令执⾏后需要输⼊⽤户密码,第1个仅指定了远程的⽬录,⽂件名字不变,第2个指定了⽂件名
第3,4个没有指定⽤户名,命令执⾏后需要输⼊⽤户名和密码,第3个仅指定了远程的⽬录,⽂件名字不变,第4个指定了⽂件名
(2) 复制⽬录:
命令格式:
scp -r local_folder remote_username@remote_ip:remote_folder
或者
scp -r local_folder remote_ip:remote_folder
第1个指定了⽤户名,命令执⾏后需要输⼊⽤户密码;
第2个没有指定⽤户名,命令执⾏后需要输⼊⽤户名和密码;
从远程服务器复制到本地服务器:
从远程复制到本地的scp命令与上⾯的命令雷同,只要将从本地复制到远程的命令后⾯2个参数互换顺序就⾏了。
实例1:从远处复制⽂件到本地⽬录
命令:
scp root@192.168.120.204:/opt/soft/nginx-0.5. /opt/soft/
输出:
[root@localhost ~]# cd /opt/soft/
[root@localhost soft]# ll
总计80072
drwxr-xr-x 12 root root 409609-2118:40 fms3.5
drwxr-xr-x 3 root root 409609-2117:58 fms4.5
drwxr-xr-x 10 root root 409610-3017:15 jdk1.6.0_16
drwxr-xr-x 10 root root 409609-1719:27 jdk1.6.0_16.bak
-rwxr-xr-x 1 root root 818712602009-12-21 jdk-6u16-linux-x64.bin
drwxrwxrwx 2 root root 409609-2101:16 mysql
drwxr-xr-x 3 root root 409609-2118:40 setup_file
drwxr-xr-x 9 root root 409609-1719:23 tomcat6.0.32
drwxr-xr-x 9 root root 40962012-08-14 tomcat_7.0
[root@localhost soft]# scp root@192.168.120.204:/opt/soft/nginx-0.5. /opt/soft/
root@192.168.120.204’s password:
nginx-0.5. 100% 479KB 478.7KB/s 00:00
[root@localhost soft]# ll
总计80556
drwxr-xr-x 12 root root 409609-2118:40 fms3.5
drwxr-xr-x 3 root root 409609-2117:58 fms4.5
drwxr-xr-x 10 root root 409610-3017:15 jdk1.6.0_16
drwxr-xr-x 10 root root 409609-1719:27 jdk1.6.0_16.bak
-rwxr-xr-x 1 root root 818712602009-12-21 jdk-6u16-linux-x64.bin
drwxrwxrwx 2 root root 409609-2101:16 mysql
-rw-r–r– 1 root root 49022003-1509:11 nginx-0.5.
drwxr-xr-x 3 root root 409609-2118:40 setup_file
drwxr-xr-x 9 root root 409609-1719:23 tomcat6.0.32
drwxr-xr-x 9 root root 40962012-08-14 tomcat_7.0
[root@localhost soft]#
说明:
从192.168.120.204机器上的/opt/soft/的⽬录中下载nginx-0.5. ⽂件到本地/opt/soft/⽬录中
实例2:从远处复制到本地
命令:
scp -r root@192.168.120.204:/opt/soft/mongodb /opt/soft/
输出:
[root@localhost soft]# ll
总计80556
drwxr-xr-x 12 root root 409609-2118:40 fms3.5
drwxr-xr-x 3 root root 409609-2117:58 fms4.5
drwxr-xr-x 10 root root 409610-3017:15 jdk1.6.0_16
drwxr-xr-x 10 root root 409609-1719:27 jdk1.6.0_16.bak
-rwxr-xr-x 1 root root 818712602009-12-21 jdk-6u16-linux-x64.bin
drwxrwxrwx 2 root root 409609-2101:16 mysql
-rw-r–r– 1 root root 49022003-1509:11 nginx-0.5.
drwxr-xr-x 3 root root 409609-2118:40 setup_file
drwxr-xr-x 9 root root 409609-1719:23 tomcat6.0.32
drwxr-xr-x 9 root root 40962012-08-14 tomcat_7.0
[root@localhost soft]# scp -r root@192.168.120.204:/opt/soft/mongodb /opt/soft/
root@192.168.120.204’s password:
mongodb-linux-i686-static-1. 100% 28MB 28.3MB/s 00:01
README 100% 7310.7KB/s 00:00
cipher命令
THIRD-PARTY-NOTICES 100% 78667.7KB/s 00:00
mongorestore 100% 7753KB 7.6MB/s 00:00
mongod 100% 7760KB 7.6MB/s 00:01
mongoexport 100% 7744KB 7.6MB/s 00:00
bsondump 100% 7737KB 7.6MB/s 00:00
mongofiles 100% 7748KB 7.6MB/s 00:01
mongostat 100% 7808KB 7.6MB/s 00:00
mongos 100% 5262KB 5.1MB/s 00:01
mongo 100% 3707KB 3.6MB/s 00:00
mongoimport 100% 7754KB 7.6MB/s 00:00
mongodump 100% 7773KB 7.6MB/s 00:00
GNU-AGPL-3.0100% 34KB 33.7KB/s 00:00
[root@localhost soft]# ll
总计80560
drwxr-xr-x 12 root root 409609-2118:40 fms3.5
drwxr-xr-x 3 root root 409609-2117:58 fms4.5
drwxr-xr-x 10 root root 409610-3017:15 jdk1.6.0_16
drwxr-xr-x 10 root root 409609-1719:27 jdk1.6.0_16.bak
-rwxr-xr-x 1 root root 818712602009-12-21 jdk-6u16-linux-x64.bin
drwxr-xr-x 3 root root 409603-1509:18 mongodb
drwxrwxrwx 2 root root 409609-2101:16 mysql
-rw-r–r– 1 root root 49022003-1509:11 nginx-0.5.
drwxr-xr-x 3 root root 409609-2118:40 setup_file
drwxr-xr-x 9 root root 409609-1719:23 tomcat6.0.32
drwxr-xr-x 9 root root 40962012-08-14 tomcat_7.0
[root@localhost soft]#
说明:从192.168.120.204机器上的/opt/soft/中下载mongodb ⽬录到本地的/opt/soft/⽬录来。
实例3:上传本地⽂件到远程机器指定⽬录
命令:
scp /opt/soft/nginx-0.5. root@192.168.120.204:/opt/soft/scptest
输出:
上传前⽬标机器的⽬标⽬录:
[root@localhost soft]# cd scptest/
[root@localhost scptest]# ll
总计0
[root@localhost scptest]# ll
本地机器上传:
[root@localhost soft]# scp /opt/soft/nginx-0.5. root@192.168.120.204:/opt/soft/scptest
root@192.168.120.204’s password:
nginx-0.5. 100% 479KB 478.7KB/s 00:00
[root@localhost soft]#
上传后⽬标机器的⽬标⽬录:
[root@localhost scptest]# ll
总计484
-rw-r–r– 1 root root 49022003-1509:25 nginx-0.5.
[root@localhost scptest]#
说明:复制本地opt/soft/⽬录下的⽂件nginx-0.5. 到远程机器192.168.120.204的opt/soft/scptest⽬录
实例4:上传本地⽬录到远程机器指定⽬录
命令:
scp -r /opt/soft/mongodb root@192.168.120.204:/opt/soft/scptest
输出:
上传前⽬标机器的⽬标⽬录:
[root@localhost ~]# cd /opt/soft/scptest/
[root@localhost scptest]# ll
总计484
-rw-r–r– 1 root root 49022003-1509:25 nginx-0.5.
[root@localhost scptest]#
本地机器上传:
[root@localhost ~]# scp -r /opt/soft/mongodb root@192.168.120.204:/opt/soft/scptest
root@192.168.120.204’s password:
mongodb-linux-i686-static-1. 100% 28MB 28.3MB/s 00:01
README 100% 7310.7KB/s 00:00
THIRD-PARTY-NOTICES 100% 78667.7KB/s 00:00
mongorestore 100% 7753KB 7.6MB/s 00:00
mongod 100% 7760KB 7.6MB/s 00:01
mongoexport 100% 7744KB 7.6MB/s 00:00
bsondump 100% 7737KB 7.6MB/s 00:00
mongofiles 100% 7748KB 7.6MB/s 00:00
mongostat 100% 7808KB 7.6MB/s 00:01
mongos 100% 5262KB 5.1MB/s 00:00
mongo 100% 3707KB 3.6MB/s 00:00
mongoimport 100% 7754KB 7.6MB/s 00:01
mongodump 100% 7773KB 7.6MB/s 00:00
GNU-AGPL-3.0100% 34KB 33.7KB/s 00:00
[root@localhost ~]#
上传后⽬标机器的⽬标⽬录:
[root@localhost scptest]# ll
总计488
drwxr-xr-x 3 root root 409603-1509:33 mongodb
-rw-r–r– 1 root root 49022003-1509:25 nginx-0.5.
[root@localhost scptest]#
说明:
上传本地⽬录 /opt/soft/mongodb到远程机器192.168.120.204上/opt/soft/scptest的⽬录中去

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。