개발은 하는건가..

[linux] 서비스 명령어 모음 본문

Server, Maria DBMS

[linux] 서비스 명령어 모음

수동애비 2024. 7. 9. 10:43
반응형
# 서비스 조회
systemctl list-unit-files | grep '검색할 서비스명'


# 서비스 시작
systemctl start 서비스명.service


# 서비스 중지
systemctl stop 서비스명.service


# 서비스 재시작
systemctl restart 서비스명.service


# 서비스 enable (부팅 시 자동 구동 설정)
systemctl enable 서비스명.service


# 서비스 disable (부팅 시 자동 구동 해제)
systemctl disable 서비스명.service
Comments