systemctl.md 997 B

systemctl

systemd 시스템 및 서비스 관리자를 제어합니다. 더 많은 정보: https://www.freedesktop.org/software/systemd/man/systemctl.html.

  • 실행 중인 서비스 모두 표시:

systemctl status

  • 실패한 유닛 나열:

systemctl --failed

  • 서비스 시작/중지/재시작/재로드/상태 표시:

systemctl {{start|stop|restart|reload|status}} {{유닛}}

  • 부팅 시 시작할 유닛 활성화/비활성화:

systemctl {{enable|disable}} {{유닛}}

  • systemd를 재로드하고 새 유닛 또는 변경된 유닛 검색:

systemctl daemon-reload

  • 유닛이 활성/활성화됨/실패했는지 확인:

systemctl {{is-active|is-enabled|is-failed}} {{유닛}}

  • 실행 중이거나 실패한 상태로 필터링하여 모든 서비스/소켓/자동 마운트 유닛 나열:

systemctl list-units --type={{service|socket|automount}} --state={{failed|running}}

  • 유닛 파일의 내용 및 절대 경로 표시:

systemctl cat {{유닛}}