在没有可用 SSH 的情况下在服务器上创建符号链接?
当我看到以下帖子时,我很兴奋,但它没有涵盖我的情况: 在本地安装 FTP 服务器
有没有办法让我在没有 SSH 访问权限的情况下在远程服务器上创建符号链接(可能通过某些 FTP hack)?
I got excited when I saw the following post but it doesn't cover my case: Mount an FTP server locally
Is there any way for me to create symbolic links on a remote server without having SSH access, possibly via some FTP hack?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用脚本。
如果您有可用的 sh、bash 或 csh,那么您几乎就像拥有 ssh 访问权限一样好。如果不这样做,那么大多数其他脚本语言都允许您在服务器上创建符号链接。
例如,在 PHP 中,您将使用 symlink() 函数:
我刚刚遇到了同样的问题,并且这就是我轻松解决它的方法:)
Use a script.
If you have sh, bash or csh available, then you're nearly as good as if you had an ssh access. If you don't, then most other scripting languages allow you to create symbolic links on your server.
For example, in PHP you would use the symlink() function:
I just had the same problem, and this is how I easily solved it :)
常规 FTP 太抽象,无法了解符号链接。
如果服务器支持自定义命令,它可能会让您直接发送 unix shell 命令。并非所有服务器都支持此功能,但其中一些服务器支持。
如果您具有 SFTP 访问权限(有时管理员授予用户 SFTP 访问权限,但没有 SSH shell),SFTP 协议支持创建符号链接。
Regular FTP is too abstract to know about symbolic links.
If the server supports custom commands, it might let you send the unix shell commands directly. Not all servers support this but some of them do.
If you have SFTP access (sometimes admins give users SFTP access but no SSH shell), SFTP protocol supports creation of symbolic links.
RFC 959 定义了 FTP 协议,并且没有提供任何创建符号链接的标准规定。
RFC 959 defines the FTP protocol, and does not offer any standard provisions for creating symbolic links.