gpt4 book ai didi

ubuntu - Amazon Ubuntu 实例上的权限问题

转载 作者:行者123 更新时间:2023-12-04 19:03:01 25 4
gpt4 key购买 nike

我正在尝试在我的实例上获得我的 ubuntu 适当权限,以便我可以运行 rails 服务器。但是,当我更改权限并尝试授予我的 ubuntu 用户 sudo 权限时,它拒绝访问 html 文件夹。我不知道可能是什么问题,因为我尝试将其添加为 sudo 用户,重新启动服务器,但它仍然失败。唯一可行的是将权限更改为我不想要的 777。我不知道为什么 ubuntu 用户权限会以他们的方式行事并拒绝进入文件夹。任何帮助将不胜感激。

ubuntu@ip-123-123-123-123:/var/www$ sudo chmod -R 644 html/
ubuntu@ip-123-123-123-123:/var/www$ cd html
-bash: cd: html: Permission denied
ubuntu@ip-123-123-123-123:/var/www$ sudo adduser ubuntu sudo
The user `ubuntu' is already a member of `sudo'.
ubuntu@ip-123-123-123-123:/var/www$ sudo cd html/
sudo: cd: command not found

权限文件
ubuntu@ip-123-123-123-123:/var/www$  sudo cat /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

“sudo ls -ld html”输出
ubuntu@ip-123-123-123-123:/var/www$ sudo ls -ld html/
drw-r--r-- 17 ubuntu root 4096 Feb 7 17:49 html/

“sudo ls -l html/”输出
ubuntu@ip-123-123-123-123:/var/www$ sudo ls -l html/
total 140
drw-r--r-- 10 root root 4096 Feb 7 17:49 app
drw-r--r-- 2 root root 4096 Feb 7 17:49 bin
drw-r--r-- 5 root root 4096 Feb 7 17:49 config
-rw-r--r-- 1 root root 154 Feb 7 17:49 config.ru
drw-r--r-- 3 root root 4096 Feb 7 17:49 coverage
-rw-r--r-- 1 root root 297 Feb 7 17:49 custom_plan.rb
drw-r--r-- 3 root root 4096 Feb 7 17:49 db
drw-r--r-- 3 root root 4096 Feb 7 17:49 doc
-rw-r--r-- 1 root root 4335 Feb 7 17:49 Gemfile
-rw-r--r-- 1 root root 12764 Feb 7 17:49 Gemfile.lock
-rw-r--r-- 1 root root 1201 Feb 7 17:49 Guardfile
-rw-r--r-- 1 root root 72 Feb 7 17:49 instructions
drw-r--r-- 5 root root 4096 Feb 7 17:49 lib
-rw-r--r-- 1 root root 1090 Feb 7 17:49 LICENSE
drw-r--r-- 2 root root 4096 Feb 7 17:49 log
-rw-r--r-- 1 root root 26 Feb 7 17:49 problems_with_dashboard_solutions?
-rw-r--r-- 1 root root 179 Feb 7 17:49 Procfile
-rw-r--r-- 1 root root 210 Feb 7 17:49 project.sublime-project
drw-r--r-- 3 root root 4096 Feb 7 17:49 public
-rw-r--r-- 1 root root 249 Feb 7 17:49 Rakefile
-rw-r--r-- 1 root root 768 Feb 7 17:49 README
-rw-r--r-- 1 root root 12087 Feb 7 17:49 README.rdoc
drw-r--r-- 13 root root 4096 Feb 7 17:49 spec
drw-r--r-- 3 root root 4096 Feb 7 17:49 test
drw-r--r-- 6 root root 4096 Feb 7 17:51 tmp
-rw-r--r-- 1 root root 490 Feb 7 17:49 TODO
-rw-r--r-- 1 root root 513 Feb 7 17:49 Vagrantfile
drw-r--r-- 3 root root 4096 Feb 7 17:49 vendor
-rw-r--r-- 1 root root 470 Feb 7 17:49 zeus.json

最佳答案

为了cd进入目录,如果您不是所有者组的所有者或成员,则需要 5(r-x)在别人。

例子:

whoami
tiago
sudo mkdir test ; sudo chown root.root test; sudo chmod 644 test
cd test
bash: cd: test: Permission denied

给别人5个:
sudo chmod 645 test
cd test
pwd
/tmp/test

但是给 5(r-x) 是一个非常糟糕的主意给别人。你最好改变它的所有权:
chown ubuntu.www-data html/

PS。 www-data 是 apache 使用的用户。您可能必须根据您使用的 Web 服务器选择另一个组。

关于ubuntu - Amazon Ubuntu 实例上的权限问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28350352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com