๋ฐ์ํ
root ๊ณ์ ์์ ํ ๊ณ์ ์ผ๋ก ์ ํ ์๋๋ ๋ฌธ์ ํด๊ฒฐ ๋ฐฉ๋ฒ์ ๋๋ค.
๐ซ ERROR
- /etc/passwd์์ ํด๋น ๊ณ์ ์ด nologin์ผ๋ก ์ค์ ๋์ด ์์ด์ ๊ณ์ ์ ํ์ด ๋์ง ์์
$ su - hdfs
This account is currently not available
$ cat /etc/passwd | grep hdfs
hdfs:x:986:979:Hadoop HDFS:/var/lib/hadoop-hdfs:/sbin/nologin
๐ก SOLVED
- chsh๋ก ๊ณ์ shell์ ๋ณ๊ฒฝ ํ su - hdfs ๋ช ๋ น์ด ์ ์ ์๋
## ์ผ์์ ์ผ๋ก ๋ณ๊ฒฝํ์ฌ hdfs๋ก ๊ณ์ ์ ์ ๋ฐฉ๋ฒ
$ su - hdfs -s /bin/bash
## ์๊ตฌ์ ์ผ๋ก ๋ณ๊ฒฝํ๋ ๋ฐฉ๋ฒ
$ chsh -s /bin/bash hdfs
$ cat /etc/passwd | grep hdfs
hdfs:x:986:979:Hadoop HDFS:/var/lib/hadoop-hdfs:/bin/bash