如何更改服务器中文件的所有者/组?
我收到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,SSH 是对的。您需要使用 SSH 连接到您的服务器(在 Linux 中使用 openssh 和“ssh”程序,或在 Windows 中使用 PuTTy)并发出命令 webdestroya 已经发布:
然后发出命令来更改文件权限:
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:
And then issue the command to change your file permissions:
chown 510:510 thefile.file
chown 510:510 thefile.file
如果是Linux服务器,可以使用
chown
和chgrp
命令来更改文件的所有者和组。您还可以使用 chmod 命令更改给定文件的权限 - EG:777 表示每个人都可以访问某个文件(可能不是您想要的,只是一个例子:
If it is a linux server, you can use the
chown
andchgrp
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: