# grep . /etc/*-release
# rpm -qa *-release
- 확인
# date
- 서울 Time Zone 정보 위치
# /usr/share/zoneinfo/Asia/Seoul
- 서버 시간 설정파일에 심볼릭 링크 추가
# mv /etc/localtime /etc/localtime_backup
# ln -s /usr/share/zoneinfo/Asia/Seoul /etc/localtime
- timedatectl 사용
# timedatectl set-timezone Asia/Seoul
CentOS 7 부터 서비스 데몬 관리 방법이 달라졌다. 기존의 init system에서 systemd로 기본 시스템 관리 데몬이 변경되었기 때문이다.
서비스 예시 : elasticsearch / .service 확장자 생략 가능
# systemctl mask elasticsearch.service
# systemctl unmask elasticsearch.service
# systemctl status elasticsearch.service
# systemctl start elasticsearch.service
# systemctl stop elasticsearch.service
# systemctl restart elasticsearch.service
# systemctl enable elasticsearch.service
# systemctl disable elasticsearch.service
- 설치된 모든 unit파일
# systemctl list-unit-files
또는
# systemctl list-units
- 구동에 실패한 서비스
# systemctl list-units --state=failed
- 모든 active 서비스 목록
# systemctl list-units --state=active
- 서비스중에 상대가 running인 목록
# systemctl list-units --type=service --state=running
- active 상태 조회
# systemctl is-active elasticsearch
- enable 상태 조회(부팅시 실행되는 서비스인지)
# systemctl is-enabled elasticsearch