iis服务器助手广告
返回顶部
首页 > 资讯 > 操作系统 >【ERROR】su user报'This account is currently not available'错误 for linux
  • 376
分享到

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

2023-06-06 03:06:08 376人浏览 独家记忆
摘要

 问题描述:linux 操作系统连接用户时报错:【This account is currently not available.】 [root@sam~]# su - mysqlThisaccount is curre

 

问题描述:

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

 

[root@sam~]# su - mysql

Thisaccount 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)

 

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

 

 

 

 

 

 

 

--结束END--

本文标题: 【ERROR】su user报'This account is currently not available'错误 for linux

本文链接: https://www.lsjlt.com/news/245973.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作