Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个云实例(开发服务器)中有一个 4GB 的文件。我必须将此文件移动到另一个云实例(测试服务器)。我怎么能做到这一点。
您可以使用 scp 将文件从开发服务器移动到测试服务器。
在开发服务器上运行命令
scp -i testkey.pem my4gbfile username@hostname:
其中 teskey.pem 是您需要复制到开发服务器上某个位置的 ec2 pem 文件。 my4gbfile 是您要移动的文件。 username 是测试服务器上的用户名,如果测试 ec2 实例有 ubuntu linux,它通常是 ubuntu。 hostname 是测试服务器 ec2 实例的 ip 或主机名。