scp 命令如何不用输入密码实现拷贝
- 前言
- sshpass 安装
- sshpass 参数
- 场景测试
前言
个人内网环境使用,不考虑安全问题。此处,使用 sshpass
。
sshpass
是一个用来非交互式地提供密码给 ssh
的工具。这对于自动化脚本非常有用,尤其是当你需要在脚本中远程执行命令,但又不希望手动输入密码时。
sshpass 安装
[root@localhost yum.repos.d]# yum -y install sshpass.x86_64
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Resolving Dependencies
--> Running transaction check
---> Package sshpass.x86_64 0:1.06-2.el7 will be installed
--> Finished Dependency ResolutionDependencies Resolved================================================================================================================Package Arch Version Repository Size
================================================================================================================
Installing:sshpass x86_64 1.06-2.el7 extras 21 kTransaction Summary
================================================================================================================
Install 1 PackageTotal download size: 21 k
Installed size: 38 k
Downloading packages:
sshpass-1.06-2.el7.x86_64.rpm | 21 kB 00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transactionInstalling : sshpass-1.06-2.el7.x86_64 1/1 Verifying : sshpass-1.06-2.el7.x86_64 1/1 Installed:sshpass.x86_64 0:1.06-2.el7 Complete!
sshpass 参数
sshpass
的主要参数如下:
-
-p password:
- 直接在命令行提供密码。
- 示例:
sshpass -p 'your_password' ssh user@hostname
-
-f filename:
- 从文件中读取密码。文件中的密码应是单行。
- 示例:
sshpass -f /path/to/password_file ssh user@hostname
-
-d number:
- 从文件描述符中读取密码。
- 示例:
sshpass -d 0 ssh user@hostname
- 这里
0
表示标准输入(stdin)。
-
-P prompt:
- 指定密码提示符。如果 SSH 的密码提示符与默认的
password
不同,则使用此选项。 - 示例:
sshpass -p 'your_password' -P 'custom_prompt' ssh user@hostname
- 指定密码提示符。如果 SSH 的密码提示符与默认的
-
-e:
- 从环境变量
SSHPASS
中读取密码。 - 示例:
export SSHPASS='your_password' sshpass -e ssh user@hostname
- 从环境变量
场景测试
两台机器:
A- 192.168.88.52
B-192.168.88.53
在机器A中将文件 scp
至 B 机器,需手动输入密码;
[root@localhost tmp]# scp yeb_tables.structure.sql admin@192.168.88.53:/tmp/
admin@192.168.88.53's password: ### 此处需要输入密码,才能使用文件传输.
yeb_tables.structure.sql 100% 23KB 15.9MB/s 00:00
[root@localhost tmp]#
若是单次传输文件到还能接受,但传输文件较多,而且计划使用脚本编排,不想每次都输入密码。
基于此场景下(非交互式),
修改后的命令如下:
[root@localhost tmp]# sshpass -p 123456 scp yeb_tables.structure.sql admin@192.168.88.53:/tmp/
[root@localhost tmp]#
上述的命令中,添加了sshpass -p 123456
实现了非交互式(也就是不用在手动输入密码)