切换用户su hdfs进入不了
出现This account is currently not available.
用vi看看 hdfs的帐号信息
# cat /etc/passwd|grep hdfs
hdfs:x:995:992:Hadoop HDFS:/var/lib/hadoop-hdfs:/sbin/nologin
发现它的shell是“/sbin /nologin”,需要将其改成“/bin/bash”
# vim /etc/passwd
修改完毕后,保存退出
这样再 su hdfs就进去了。
修改
完成。