在没有可用 SSH 的情况下在服务器上创建符号链接?

发布于 2024-10-30 23:36:27 字数 216 浏览 0 评论 0原文

当我看到以下帖子时,我很兴奋,但它没有涵盖我的情况: 在本地安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

微凉徒眸意 2024-11-06 23:36:27

使用脚本。

如果您有可用的 sh、bash 或 csh,那么您几乎就像拥有 ssh 访问权限一样好。如果不这样做,那么大多数其他脚本语言都允许您在服务器上创建符号链接。

例如,在 PHP 中,您将使用 symlink() 函数:

 symlink("myOriginalFileOrDirectory", "mySymbolicLink"); 

我刚刚遇到了同样的问题,并且这就是我轻松解决它的方法:)

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:

 symlink("myOriginalFileOrDirectory", "mySymbolicLink"); 

I just had the same problem, and this is how I easily solved it :)

冰之心 2024-11-06 23:36:27

常规 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.

梦归所梦 2024-11-06 23:36:27

RFC 959 定义了 FTP 协议,并且没有提供任何创建符号链接的标准规定。

RFC 959 defines the FTP protocol, and does not offer any standard provisions for creating symbolic links.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文