isPowerfulBlog

[Linux/Ubuntu] Systemctl 본문

카테고리 없음

[Linux/Ubuntu] Systemctl

왕밤빵도라에몽 2022. 9. 7. 01:53

systemctl

systemd를 관리하는 명령어
/usr/lib/systemd/system 디렉토리의 .service파일을 systemctl 명령어로 서비스를 제어

스크린샷, 2022-09-07 01-51-37

$ systemctl start {service}

systemctl 기본 명령어

명령어 내용
start / stop 서비스 시작 / 종료
enable / disable 부팅 시 서비스 자동 실행 여부
status 서비스 활성상태 확인
restart 서비스 재시작
reload 서비스 갱신
list-units --type=service 서비스 리스트
list-units --state=active 활성상태인 서비스 리스트

restart, reload의 차이

  • restart: 서비스를 완전히 셧다운 한 후 재시작
  • reload: 서비스의 config 파일들을 reload

References

https://mygumy.tistory.com/43