分类: Linux

操作环境,本地机器 A ,远端机器B  A机器IP为 IPA, B机器IP为IPB

1,使用SCP命令将本地机器文件a.txt 传输到B机器/home/oracle 目录下面,B机器是用户是ORACLE

SCP  a.txt  oracle@IPB:/home/oracle

会提示输入B机器ORACLE用户的密码,密码填写正确后,传输成功。

2,使用SCP命令将B机器/HOME/ORACLE 目录下面的a.txt文件传输到本地当前目录

SCP oracle@IPB:/HOME/ORACLE/A.TXT   .(这里有个点,表示当前目录)

密码输入正确,传输成功

如果文件名称相同,SCP直接覆盖该文件。


3,使用SCP命令的时候要输入密码,这在写shell脚本的时候很麻烦,下面介绍一下如何不用输入密码

A机器向B机器传输的时候不用输密码的方法:

在两台机器上面建立信任关系,即可解决此问题

[oracle@btasetl .ssh]$ ssh-keygen -t rsa           ----A机器上的操作
Generating public/private rsa key pair.
Enter file in which to save the key (/home/oracle/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/oracle/.ssh/id_rsa.
Your public key has been saved in /home/oracle/.ssh/id_rsa.pub.
The key fingerprint is:
12:7b:c8:18:77:96:6e:e3:f3:e5:d2:d0:91:df:7c:0d 

一直回车下去

执行完成后会在/home/oracle/.ssh 目录下面生成两个文件 id_rsa,id_rsa.pub

把 id_rsa.pub文件传输到B机器上面,并修改名称 authorized_keys

[oracle@btasetl .ssh]$ scp id_rsa.pub  mstr@IPB:/home/oracle/.ssh/authorized_keys。

再次使用SCP命令由A机器传输到 B机器上面的时候就不会输入密码。

[oracle@btasetl dlm]$ scp hello  mstr@IPB:/home/mstr/dlm
hello                                                   100%    0     0.0KB/s   00:00  
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐