제로하우스

[MySQL] System has not been booted with systemd as init system (PID 1). Can't operate. 본문

DB&SQL

[MySQL] System has not been booted with systemd as init system (PID 1). Can't operate.

송제로투 2022. 5. 30. 15:12

Ubuntu에서 MySQL 설치를 완료하고, MySQL 프로그램을실행하려고 하는데 오류가 발생하였다.

sudo systemctl start mysql

오류 메시지는 다음과 같았다.

System has not been booted with systemd as init system (PID 1). Can't operate.

검색해보니 이것은 systemctl이 작동하지 않는 곳에서 작동했기 때문에 발생하는 오류였다. 그래서 아래 명령어처럼 직접 mysql을 실행하니 MySQL이 성공적으로 실행되었다.

sudo /etc/init.d/mysql start
Comments