那么说干就干。也就是今天的用 SSH 登录远程服务器 A,然后在服务器 A 上的终端,通过命令行来使用 FTP 命令,将上传文件到 B 服务器。
具体步骤如下:
1. ,首先用 cd 命令,进入要上传的文件所在的目录,然后在终端中输入
ftp
即可变为 FTP 操作环境
终端显示为,此为 ftp 操作环境标志。
ftp>
2. 然后输入要登录的远端服务器地址,ip 和域名都行
ftp> open yimity.com
3. 然后终端就会有如下显示(IP 时间等,还有其他的有可能不同,差不多即可)
Connected to yimity.com (173.248.187.5).
220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 5 of 50 allowed.
220-Local time is now 08:52. Server port: 21.
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 3 minutes of inactivity.
Name (yimity.com:root): 然后这里输入 FTP 用户名
4. 接下来就是输入密码
331 User yimity OK. Password required
Password: 这里输入密码,输入过程中不会有任何显示,但其实已经输入了。
5. 然后如果密码正确,就会有如下提示
230-User yimity has group access to: yimity
230 OK. Current restricted directory is /
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>