Loading
0

解决linux su: Permission denied切换用户报错方法
被墙跳转TG:@qianhenetwork QQ 851617266

301免备案跳转微信公众号
腾讯云服务器大促销。
华为服务器
现象:用普通账号登录linux系统后使用su root 切换到root账号报错Password: su: Permission denied 检查了一番,原来是/etc/pam.d/su配置有关系,参考如下方法解决好了
报错如下:

[[email protected]]$ su root
Password:
su: Permission denied

原因:su 的PAM配置文件中有auth required pam_wheel.so use_uid根据上一句的说明可以知道要使用su命令则该用户必须在wheel用户组中,而我的普通用户没有在wheel用户组中。有两种方法可以解决这个问题,一是注释该行,二是将普通用户加入wheel组。
解决方法:
编辑:/etc/pam.d/su 文件,将“auth   required    pam_wheel.so use_uid” 这行注释掉。(对比了一下原版系统这条默认是注释的)

[yyc@Test-H-Centos8 pam.d]$ cat su
#%PAM-1.0
auth            required        pam_env.so
auth            sufficient      pam_rootok.so
# Uncomment the following line to implicitly trust users in the "wheel" group.
#auth           sufficient      pam_wheel.so trust use_uid
# Uncomment the following line to require a user to be in the "wheel" group.
#auth            required        pam_wheel.so use_uid
auth            substack        system-auth
auth            include         postlogin
account         sufficient      pam_succeed_if.so uid = 0 use_uid quiet
account         include         system-auth
password        include         system-auth
session         include         system-auth
session         include         postlogin
session         optional        pam_xauth.so

301免备案跳转微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://www.zfcdn.xyz/showinfo-3-36300-0.html
亲爱的:被墙域名跳转TG:@qianhenetwork QQ:851617266,可否收藏+评论+分享呢?
上一篇:解决:Linux误删磁盘分区通过testdisk恢复分区方法
下一篇:解决:You must wait longer to change your password报错