제로하우스
[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:12Ubuntu에서 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
'DB&SQL' 카테고리의 다른 글
[TIL][DB] 03 NoSQL (0) | 2022.06.02 |
---|---|
[TIL][DB] 02 관계형 데이터베이스 (RDB) (0) | 2022.06.02 |
[TIL][DB] 01 Database Intro (0) | 2022.06.02 |
[MySQL] Error: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client (0) | 2022.05.31 |
[MySQL] windows 'mysql'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. (0) | 2022.05.31 |
Comments