尝试从 sco 服务器连接到 FTP 时出错
我需要实现一个脚本,可以从服务器A(sco unix)和服务器b(ubuntu 8.04)发送文件。
我不知道如何完成这项任务。
我将非常感谢任何帮助 到目前为止,我已经读过,我必须在主目录中创建一个 .netrc 文件,但我不知道必须在该文件中放入什么 谢谢。
i need to implement a script the can send file from a server A with (sco unix) and server b with ubuntu 8.04.
i have no idea how to accomplish this task.
i will really appreciate any help
I have read so far that I have to make an .netrc file in the home directory, but I don’t know what I have to put inside this file
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这比我想象的更容易,我所做的是
服务器A(sco操作系统)
创建一个系统用户调用测试
然后在测试文件夹(test/)内创建一个文件调用.netrc
vi .netrc
机器 xxx.xxx.xx.x
用户测试
密码测试
服务器 B (Ubuntu)
创建 ftp 帐户 调用测试
就是这样。现在我可以编写一个脚本通过ftp从服务器A登录到服务器B,而无需任何用户干扰
I know this was easier what i thought, what I did was
Server A (sco Operating System)
Create a system user call test
Then inside of the test folder (test/) I create a file call .netrc
vi .netrc
Machine xxx.xxx.xx.x
User test
Password test
Server B (Ubuntu)
Create a ftp account call test
And this is it. Now I can write an script to login via ftp from server A to Server B without any user interference