본문 바로가기
Infra & DevOps/Linux

[퍼온 글] SSH 연결 에러

by Jordy-torvalds 2020. 6. 21.
반응형

에러 내용

$ ssh 192.168.0.14
user@192.168.0.14's password:
"System is booting up. Unprivileged users are not permitted to log in yet. Please come back later. For technical details, see pam_nologin(8)."

해결법

This issue may come from /run/nologin. /run/nologin is created by systemd-tmpfiles-setup.service. It is then removed by systemd-user-sessions.service.

So you have to delete this:

$ ls -l /run/nologin
# rm /run/nologin
반응형