RHEL6 service
> RHEL7 systemctl
RHEL6 의 service 명령어가 RHEL7 에서는 systemctl 명령어로 대체됨# 상태표시 서비스 단위
$ systemctl status [service_name]
# 상태표시 전체
$ systemctl list-units --type service
# 상태표시 전체(생략형)
$ systemctl --type service
# 서비스 시작
$ systemctl start [service_name]
# 서비스 종료
$ systemctl stop [service_name]
# 서비스 강제 종료
$ systemctl kill -s 9 [service_name]
# 서비스 재시작
$ systemctl restart [service_name]
# 서비스 설정 반영
$ systemctl reload [service_name]
RHEL6 chkconfig
> RHEL7 systemctl
RHEL6의 chkconfig 명령어가 RHEL7 에서는 systemctl 명령어로 대체됨
# 전체 서비스 상태 보기
$ systemctl list-unit-files --type service
# 서비스 추가 (chkconfig --addd)
$ systemctl daemon-reload
# /etc/systemd/system 하위에 존재하는 service 설정파일을 변경한 경우에 systemd 에 반영하는 용도로도 사용되어짐
# 서비스 상태 확인
$ systemctl is-enabled [service_name]
# 서비스 enable
$ systemctl enable [service_name]
# 서비스 disable
$ systemctl disable [service_name]
반응형
'Programming > Linux' 카테고리의 다른 글
[Rsyslog + Loganalyzer + MySQL] 설치/구성 (0) | 2017.05.11 |
---|---|
[Timezone] 한국 표준시로 변경 - CentOS7 (0) | 2017.03.19 |
[NTP] 시간 동기화 자체 서버 구축 / 클라이언트 설정 (0) | 2016.09.26 |
[NTP] NTP daemon / crontab으로 시간 동기화 (0) | 2016.09.26 |
[Logrotate] 강제로 갱신, Debug모드 (0) | 2016.09.26 |
[Service] Shell script를 python service로 구동하기 (0) | 2016.09.26 |
[User] User 추가/Root권한/비밀번호 인증 활성화 (0) | 2016.09.26 |
[SSH] PW없이 로그인 (0) | 2016.09.26 |
[Service] Service list (0) | 2016.09.26 |
[Semanage] ssh 특정 포트 접근 제어 (0) | 2016.09.26 |