리눅스 systemd와 systemctl 역할과 사용 방법

리눅스에서 systemd는 서비스 관리자 역할을 합니다. 그리고 systemd와 service manager를 컨트롤하기 위한 도구가 systemctl입니다. 때문에 서비스를 중단, 시작, 상태 보기 등을 하기 위해 systemctl 명령어를 사용합니다.

systemctl 활용

서비스 시작

systemctl start application.service
systemctl start application

서비스 중지

systemctl stop application.service
systemctl stop application

서비스 재시작

systemctl restart application.service
systemctl restart application

설정 다시 불러오기

systemctl reload application.service
systemctl reload application

서비스 enable / disable

systemctl enable application.service
systemctl disable application.service

서비스 enable 설정을 하면 시스템 시작 시 자동으로 실행됩니다.

반응형

댓글

Designed by JB FACTORY