如何更改服务器中文件的所有者/组?

发布于 2024-08-31 12:35:57 字数 89 浏览 7 评论 0原文

我收到 500 错误,因为我的某些文件的所有者设置不正确,其设置为 0 0,而其余文件的所有者设置为 510 510?我读过有关 ssh 的内容,如何解决这个问题?

I am getting a 500 error because the owner of some of my files is set incorrectly, its set at 0 0 when the rest are at 510 510?? How do I fix this, I've read something about ssh?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

木緿 2024-09-07 12:35:57

是的,SSH 是对的。您需要使用 SSH 连接到您的服务器(在 Linux 中使用 openssh 和“ssh”程序,或在 Windows 中使用 PuTTy)并发出命令 webdestroya 已经发布:

$ ssh yourserver -l username <host>
OR
$ ssh yourserver [username@]<host>

然后发出命令来更改文件权限:

$ chown 510:510 thefile.file

Yes, SSH is right. You need to use SSH to connect to your server (using openssh and the "ssh" program in Linux, or PuTTy in Windows) and issue the command webdestroya already posted:

$ ssh yourserver -l username <host>
OR
$ ssh yourserver [username@]<host>

And then issue the command to change your file permissions:

$ chown 510:510 thefile.file
以歌曲疗慰 2024-09-07 12:35:57

chown 510:510 thefile.file

chown 510:510 thefile.file

把人绕傻吧 2024-09-07 12:35:57

如果是Linux服务器,可以使用chownchgrp命令来更改文件的所有者和组。

您还可以使用 chmod 命令更改给定文件的权限 - EG:777 表示每个人都可以访问某个文件(可能不是您想要的,只是一个例子:

If it is a linux server, you can use the chown and chgrp commands to change the owner and group of a file.

You can also use the chmod command to change the permissions of a given file - EG: 777 means that everyone has access to a file (probably not what you want, just an example:

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