일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 디버깅
- 디렉토리
- visual studio code
- 우분투
- SQL
- 리눅스
- 파이썬
- OpenCV
- 아나콘다
- 가상환경
- 기초
- 데이터분석
- 플라스크
- matplotlib
- 단축키
- 운영체제
- 역할
- 데이터베이스
- 코랩
- 라이브러리
- 판다스
- vscode
- 에러
- 원격저장소
- 프로그래머스
- 엑셀
- 머신러닝
- MySQL
- 깃허브
- 예제
Archives
- Today
- Total
취미와 밥줄사이
[ CentOS7 ] systemctl 명령어 본문
systemd
- system d(system daemon)은 Unix 시스템이 부팅후에 가장 먼저 생성된 후에 다른 프로세스를 실행하는 init 역할을 대체하는 데몬
systemctl 명령어
# 서비스 관리
- 서비스 상태확인
systemctl status [서비스명]
- 서비스 구동
systemctl start mariadb
-서비스 자동 시작
systemctl enable mariadb
- 서비스 목록 보기
systemctl list-units
systemctl list-unit-files
# 조건에 따라 서비스 보기
- enabled된 모든 서비스
systemctl list-units --state=enabled
- 구동에 실패한 서비스
systemctl list-units --state=failed
- 모든 active 목록
systemctl list-units --state=active
- inactive 목록
systemctl list-units --all --state=inactive
- 서비스중에 상태가 running인 목록
systemctl list-units --type=service --state=running
REFERENCE
https://www.lesstif.com/system-admin/systemd-system-daemon-systemctl-24445064.html
'OS > Linux' 카테고리의 다른 글
[ Ubuntu 20.04 ]dpkg 명령어 (0) | 2022.03.07 |
---|---|
[ CentOS7] Cannot find a valid baseurl for repo: base/7/x86_64 (0) | 2022.03.07 |
[ CentOS7 ] yum 캐시 정리 (0) | 2022.03.06 |
[ CentOS7 ] RPM 명령어 사용법 (0) | 2022.03.06 |
[ Linux ] File Descriptor(파일 디스크립터) (0) | 2022.03.04 |