我正在移动服务器,我们的图像目录有大约 15,000 张图像(2GB 大小)需要移动到新服务器上。
图像在新服务器上会有不同的路径,所以不能只迁移整个 CPANEL。
有什么简单的方法可以解决这个问题吗?
提前感谢您的帮助。
使用 SFTP 从一台服务器到另一台 http://support.cs.utah.edu/index.php?option=com_content&view=article&id=33&Itemid=59
编辑:回答下面的问题:不需要本地下载,sftp 是直接服务器到服务器。像这样在源服务器上使用来自 SSH shell 的 sftp
$ cd source_directory
$ sftp user@otherserver
Password:
Connected to otherserver
sftp> cd target_directory //this is changing dir on remote server not local
sftp> put filename
或从源目录到目标目录的所有文件
sftp> 放 *