网站建设资讯

NEWS

网站建设资讯

【ERROR】suuser报'Thisaccountiscurrentlynotavailable'错误forlinux

 

成都创新互联公司专注于三门峡企业网站建设,响应式网站设计,购物商城网站建设。三门峡网站建设公司,为三门峡等地区提供建站服务。全流程按需规划网站,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务

问题描述:

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)

 

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

 

 

 

 

 

 

 


网页标题:【ERROR】suuser报'Thisaccountiscurrentlynotavailable'错误forlinux
网页URL:http://cdweb.net/article/isgjcs.html