どのようにそれは私がしてrootとしてログインできない可能性があるsu root
かsu
(私は間違ったパスワードのエラーが出る)、しかし、私はしてログインすることができssh root@localhost
たりssh root@my_local_IP
、同じパスワードを使用して?
CentOS 6.4を使用しています。
Update1:
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
Update2:
$ sudo grep su /var/log/secure | grep -v sudo
与える:
Feb 23 13:12:17 fallah su: pam_unix(su:auth): authentication failure;
logname=fallah uid=501 euid=501 tty=pts/0 ruser=fallah rhost= user=root
約20回繰り返した。
ssh 192.168.1.218
あなたはあなた自身としてログインしているだけですか?経由でrootとしてログインするには、ssh
通常ssh root@192.168.1.218
またはが必要ssh root@localhost
です。
echo $$
)を開いて(たとえば、経由でssh
)strace
そのシェルを開始しstrace -o su.strace -p 12345 -f
、エラーメッセージの前に奇妙なエラーを探します。または、この種の出力に慣れていない場合は、エラーメッセージの前の最後の30行を質問にコピーします。
Process 11736 attached - interrupt to quit
chmod 4755 /bin/su
これを修正するには、rootとして入力します。
/etc/securetty
(cp /etc/securetty{,.old}; : > /etc/securetty
)。それでも解決しない場合は、のコンテンツを提供してください/etc/pam.d/su
。