简体   繁体   English

如何将文件直接从另一台服务器传输到我的服务器

[英]how to transfer a file to my server directly from another server

Hey guys what is the easiest way to transfer a file to my server directly from another server, this way I won't download the file to my pc and then upload it to my server, so the requested file should look like http://www.examplesite.com/file.zip my server is running linux, but I don't have SSH access. 大家好,直接从另一台服务器直接将文件传输到服务器是最简单的方法,这种方式我不会将文件下载到PC上然后再上传到服务器,因此请求的文件应类似于http:// www.examplesite.com/file.zip我的服务器正在运行linux,但是我没有SSH访问权限。

So how can I do this ? 那么我该怎么做呢? and thanks guys :D 谢谢大家:D

You have to start a shell on your server. 您必须在服务器上启动外壳程序。 Then try : 然后尝试:

man wget

And use : 并使用:

wget http://www.examplesite.com/file.zip

If you can not have acces to a shell then tell us exactly what control you have over your server. 如果您无法访问Shell,请告诉我们您对服务器拥有什么控制权。

my2c my2c

Without SSH it will be very difficult. 如果没有SSH,这将非常困难。 Possibly rsync might work, if its on both servers with damons set up. 如果rsync在同时安装了damons的两台服务器上,则rsync可能会起作用。 RCP (remote copy) exists, its simlar to SCP with out the SSH part, but I doubt its installed due to security concerns. 存在RCP(远程副本),它与SCP类似,没有SSH部分,但是由于安全方面的考虑,我怀疑它的安装。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在服务器之间传输文件 - How to transfer file from server to server SSH如何在不直接登录跳转服务器的情况下从跳转服务器隧道到另一台服务器 - How to SSH tunnel from jump server to another server without directly logging in to the jump server 服务器到服务器文件传输端口? - Server to server file transfer port? 无论如何使用Hudson将.war或.jar从一台服务器转移到另一台服务器? - Is there anyway to transfer .war or .jar from one server to another with Hudson? Ksh脚本将文件从服务器传输到本地计算机 - Ksh script to transfer a file from a server to local machine Bash脚本传输到Python-将日志从服务器复制到另一台远程服务器 - Bash script transfer to Python - copy logs from server to another remote server 如何使用libcurl在FTP服务器的特定目录中传输文件 - how to transfer a file in a particular directory of FTP server using libcurl 如何将文件从AWS服务器传输到AWS服务器位于堡垒服务器之后的本地计算机 - How to transfer files from AWS server to local machine where the AWS server is behind Bastion server 如何将文件从远程 Linux 服务器传输到工件 - How can I transfer files from a remote Linux server to artifactory 如何在共享主机中将 SSL 从 Windows 传输到 Linux 服务器? - How to transfer SSL from Windows to Linux server in shared hosting?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM