su: authentication failure 解决方法

在Linux上切换root时,密码正确。。但提示:su: authentication failure

->sudo passwd

->Password:你当前的密码

->Enter new UNIX password:这个是root的密码 
->Retype new UNIX password:重复root的密码 
然后会提示成功的信息。 

使用su和sudo是有区别的,使用su切换用户需要输入所切换到的用户的密码,而使用sudo则是当前用户的密码。

原文地址:https://www.cnblogs.com/caijunchao/p/10765793.html

时间: 2024-10-31 13:23:47

su: authentication failure 解决方法的相关文章

Ubuntu下su:authentication failure的解决办法

$ su - rootPassword: su: Authentication failureSorry. 这时候输入 $ sudo passwd rootEnter new UNIX password: Retype new UNIX password: passwd: password updated successfully 这时候就可以进入根目录了. Ubuntu下su:authentication failure的解决办法,布布扣,bubuko.com

Ubuntu su: Authentication failure

[email protected]:~$ su - root Password: su: Authentication failure 修改密码: $ sudo passwd root Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully 重新su - root 就OK了.

ubuntu 突然不能 sudo成功,报错su: Authentication failure

通过查看日志: /var/log/auth.log 报错: su[9959]: PAM unable to dlopen(pam_rootok.so): /lib/security/pam_rootok.so: cannot open shared object file: No such file or directory su[9959]: PAM adding faulty module: pam_rootok.so su[9959]: PAM unable to dlopen(pam_u

ubuntu输入su命令显示 Authentication failure解决

由于ubuntu系统默认是没有激活root用户的,需要手动激活: 终端下输入: sudo passwd Password:你当前的密码 Enter new UNIX password:这个是root的密码 Retype new UNIX password:重复root的密码 即可成功. 注:使用su和sudo是有区别的,使用su切换用户需要输入所切换到的用户的密码,而使用sudo则是当前用户的密码.

composer错误提示Cloning failed using an ssh key for authentication的解决方法

早上ytkah在测试laravel用composer安装一些插件时出现了一些错误,提示如下,是github的ssh密匙认证错误,提示要重新生成token,然后保存在/root/.config/composer/auth.json文件中 Cloning failed using an ssh key for authentication, enter your GitHub credentials to access private repos Head to https://github.com

Redis (error) NOAUTH Authentication required.解决方法

出现认证问题,应该是设置了认证密码,输入密码既可以啦 注意密码是字符串形式! [plain] view plain copy 127.0.0.1:6379> auth "yourpassword" 例如密码是'root',当出现认证问题时候,输入"auth 'root'"即可 [plain] view plain copy 127.0.0.1:6379> set name "hello" (error) NOAUTH Authenti

mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication的解决方法

直接命令行操作没有问题,但是PHP连接就会报上面的错误. SET old_passwords =0; USE mysql; UPDATE user SET password =PASSWORD('yourpassword') WHERE user='testuser' limit 1; SELECT LENGTH(password) FROM user WHERE user='root'; FLUSH PRIVILEGES;

Ubuntu14.04 切换root账户su root失败解决办法

原因是需要备份一个vimrc,可是cp就提示Permission denied. su root就提示su: Authentication failure 解决办法: sudo passwd root ******(输入原先的root口令) ******(输入新的root口令,可以保持原样.我就保持的原样) ******(再次输入新的root口令) ------------------------------- 但我不知道为什么

使用su - root出现Authentication failure

使用su - root出现 Password: su: Authentication failure 原因:ubtun系统默认是没有激活root用户的 解决方法: 输入命令:sudo passwd root 显示 Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully 注意: (Enter new UNIX password: )不能和(Password: )输入的相同,如果