본문 바로가기

프로그래밍/Docker

[Docker] - System has not been booted with systemd as init system (PID 1)

반응형

개요


docker를 설치하고 systemctl로 실행시키려 했으나 아래와 같은 에러가 남.

$ sudo systemctl start docker
System has not been booted with systemd as init system (PID 1). Can't operate.
Failed to connect to bus: Host is down

 

 

해결


  • sudo /etc/init.d/docker start 실행
$ sudo /etc/init.d/docker start
 * Starting Docker: docker

 

 

 

Reference


https://github.com/MicrosoftDocs/WSL/issues/457

반응형