成都創(chuàng)新互聯(lián)公司專注于三門峽企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),購物商城網(wǎng)站建設(shè)。三門峽網(wǎng)站建設(shè)公司,為三門峽等地區(qū)提供建站服務(wù)。全流程按需規(guī)劃網(wǎng)站,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
問題描述:
Linux 操作系統(tǒng)連接用戶時(shí)報(bào)錯(cuò):【This account is currently not available.】
[root@sam ~]# su - MySQL
This account is currently not available.
問題分析:
查看賬號(hào)(用戶)信息
使用Vipw mysql命令或 cat /etc/passwd文件
發(fā)現(xiàn)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
處理方法:
usermod -s /bin/bash mysql
修改前:
mysql:x:500:500::/home/mysql:/sbin/nologin
修改后:
mysql:x:500:500::/home/mysql:/bin/bash
Repaired驗(yàn)證:
[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)
總結(jié):修改前要記錄相關(guān)信息,以便回退使用。