码迷,mamicode.com
首页 > 系统相关 > 详细

Linux su

时间:2014-09-28 18:15:45      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:linux su

Linux_su 处理方法
[root@xxx ~]# su - user1
su: incorrect password
[root@xxx ~]# su - user1
su: incorrect password
[root@xxx~]# su - user1
su: incorrect password

注:如果出现此类的故障,解决的思路如下

1. 查看/bin/su的配置文件的权限
[root@xxx ~]# ll /bin/su
-rwsr-xr-x. 1 root root 34904 Mar 10  2011 /bin/su
注:-rwsr-xr-x.  这样的权限是正确,如果不是这样的权限,则代表有问题,多半都可以解决问题

2. 查看配置文件/etc/passwd and /etc/shadow 的文件有没有空行
cat /etc/passwd | grep "^$"
cat /etc/shadow | grep "^$"

如果有空行的话,则可以把他们给删除
sed -i ‘/^$/d‘ /etc/passwd
sed -i ‘/^$/d‘ /etc/shadow

3. 如果还是不能su登录的话,则查看配置文件
[root@xxx ~]# cat /etc/pam.d/su
#%PAM-1.0
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  include  system-auth
account  sufficient pam_succeed_if.so uid = 0 use_uid quiet ###主要是查看这行的配置,如果没有,则代表有错误
account  include  system-auth
password include  system-auth
session  include  system-auth
session  optional pam_xauth.so

设置这样,再进行su
[root@xxx ~]# su - user1
[user1@xxx~]$

这样就可以进行su的操作

 


 

本文出自 “夜冷” 博客,请务必保留此出处http://miaopan.blog.51cto.com/4233458/1559108

Linux su

标签:linux su

原文地址:http://miaopan.blog.51cto.com/4233458/1559108

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!