본문 바로가기
OS & Server/Linux

[Centos7] systemctl 명령어 사용법

by 주리니e 2022. 7. 5.
728x90

systemctl 명령어 사용법

 

 

  • 서비스 재실행 (예 : sshd)
$ systemctl restart sshd.service

 

  • 서비스 중지 (예 : sshd)
$ systemctl stop sshd.service

 

  • 서비스 시작 (예 : sshd)
$ systemctl start sshd.service

 

  • 서비스 상태보기 (예 : sshd)
$ systemctl status sshd.service

 

  • 부팅시 서비스 시작하기 (예 : sshd)
$ systemctl enable sshd.service

 

  • 부팅시 서비스 시작하지 않음 (예 : sshd)
$ systemctl disable sshd.service

 

  • 부팅시 실행되는 서비스인지 검사 (예 : sshd)
$ systemctl is-enabled sshd

 

  • 서비스 목록보기
$ systemctl list-unit-files --type=service

 

  • 부팅시 실행되는 모든 서비스 확인
$ systemctl list-unit-files --type service
$ systemctl list-unit-files | grep enabled
728x90

댓글