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
'OS & Server > Linux' 카테고리의 다른 글
[Centos7] 아파치 Apache (httpd) 업데이트 (0) | 2022.07.11 |
---|---|
[Centos7] 아파치 Apache(httpd) 설치 (0) | 2022.07.11 |
[Centos7] firewall 방화벽 명령어 (0) | 2022.07.05 |
[Centos7] [trouble shooting] httpd start failed due to SELinux (1) | 2022.07.04 |
[Centos7] Tomcat 서비스(systemctl) 등록, 삭제, 목록 확인 (0) | 2022.07.04 |
댓글