千家信息网

【ERROR】su user报'This account is currently not available'错误 for linux

发表于:2024-11-30 作者:千家信息网编辑
千家信息网最后更新 2024年11月30日,问题描述:Linux 操作系统连接用户时报错:【This account is currently not available.】[root@sam ~]# su - mysqlThis accoun
千家信息网最后更新 2024年11月30日【ERROR】su user报'This account is currently not available'错误 for linux

问题描述:

Linux 操作系统连接用户时报错:【This account is currently not available.】

[root@sam ~]# su - mysql

This account is currently not available.

问题分析:

查看账号(用户)信息

使用Vipw mysql命令或 cat /etc/passwd文件

发现mysql用户后为'/sbin/nologin',需要修改为'/bin/bash'后方可连接使用。

[root@sam ~]# cat /etc/passwd

root:x:0:0:root:/root:/bin/bash

……

mysql:x:500:500::/home/mysql:/sbin/nologin

处理方法:

  1. 直接命令试:

usermod -s /bin/bash mysql

  1. 修改'/etc/passwd'文件:

修改前:

mysql:x:500:500::/home/mysql:/sbin/nologin

修改后:

mysql:x:500:500::/home/mysql:/bin/bash

Repaired验证:

[root@sam ~]# cat /etc/passwd

root:x:0:0:root:/root:/bin/bash

……

mysql:x:500:500::/home/mysql:/bin/bash

[root@sam ~]# su - mysql

[mysql@sam ~]$ id

uid=500(mysql) gid=500(mysql) groups=500(mysql)

总结:修改前要记录相关信息,以便回退使用。

0