phing + sftp 上传网站作为自动构建的一部分
有谁知道在 Phing 构建中使用 SFTP 将文件上传到远程服务器的简单方法吗?我似乎无法找到自定义或本机 Phing 任务来执行此操作。另一个问题是 SFTP unix 命令的交互性(到达主机后需要密码等)
有什么想法吗?
Does anybody know of an easy way to upload files to a remote server using SFTP from within a Phing build? I cant seem to find a custom or native Phing task to do this. The other problem is the interactivity of the SFTP unix command (requiring a password after reaching host, etc.)
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用
SCP
(安全复制)?它直接受 Phing 支持(请参阅 scp 任务文档) 。有关差异的概述,请参阅此网站。 。
Why not use
SCP
(Secure Copy)? It's directly supported by Phing (See the scp Task documentation ).For an overview of the differences, see this website...
您可以使用 phing sftp 任务:
https://github.com/discont/phing-sftptask
You can use phing sftp task:
https://github.com/discont/phing-sftptask