Linux Systemctl은 System V, service 및 chkconfig 명령을 대체하는 데 사용되는 시스템 관리 데몬, 도구 및 라이브러리 모음입니다. 초기 프로세스는 주로 systemd 시스템 및 서비스 관리자를 제어하는 역할을 합니다. Systemctl –help를 보면 명령이 크게 systemd 서비스에 대한 제어 명령 쿼리 또는 전송, 관리 단위 서비스에 대한 명령, 서비스 파일 관련 명령, 작업, 환경, 스냅샷 관련 명령, 구성 재로드로 나누어져 있음을 알 수 있다. 시스템 서비스 및 전원 켜기 및 끄기와 관련된 시스템 명령.
1. 사용 가능한 모든 장치 나열
# systemctl list-unit-files
2. 실행 중인 모든 장치 나열
# systemctl list-units
3.
rreee
4. 특정 단위(예: crond.service)가 활성화되어 있는지 확인하세요
# systemctl –failed
5. 모든 서비스를 나열하세요
# systemctl is-enabled crond.service
6. 서비스를 확인하고 서비스(예: httpd.service) 상태를 확인하세요
# systemctl list-unit-files –type=service
# systemctl start httpd.service # systemctl restart httpd.service # systemctl stop httpd.service # systemctl reload httpd.service # systemctl status httpd.service
8. 시작) 또는 서비스(예: ntpdate.service)를 표시합니다.
# systemctl is-active mysql.service # systemctl enable mysql.service # systemctl disable mysql.service
# systemctl mask ntpdate.service
ln -s ‘/dev/null”/etc/systemd/system/ntpdate.service'
# systemctl unmask ntpdate.service
rm ‘/etc/systemd/system/ntpdate.service'
# systemctl kill crond
# systemctl list-unit-files –type=mount
# systemctl start tmp.mount # systemctl stop tmp.mount # systemctl restart tmp.mount # systemctl reload tmp.mount # systemctl status tmp.mount
# systemctl is-active tmp.mount # systemctl enable tmp.mount # systemctl disable tmp.mount
16. 서비스의 종속성 목록을 가져옵니다(httpd)
# systemctl mask tmp.mount ln -s ‘/dev/null”/etc/systemd/system/tmp.mount' # systemctl unmask tmp.mount rm ‘/etc/systemd/system/tmp.mount'
17.
# systemctl list-unit-files –type=socket
# systemctl show mysql
# systemctl list-dependencies httpd.service
# systemctl rescue
# systemctl emergency
21, 즉 다중 사용자 모드(명령줄) 실행을 시작합니다.
# systemctl get-default
# systemctl isolate runlevel5.target
22. 다중 사용자 모드 또는 그래픽 모드를 기본 실행 수준으로 설정하세요
# systemctl isolate graphical.target
23. 시스템을 다시 시작, 중지, 일시 중단하거나 최대 절전 모드로 설정하거나 시스템을 하이브리드 절전 모드로 설정하세요
# systemctl isolate runlevel3.target
Runlevel 0: 시스템 종료
Runlevel 1: Rescue, 유지 관리 모드
Runlevel 4: 다중 사용자, 그래픽 시스템 없음
Runlevel 5: 다중 사용자, 그래픽 시스템
위 내용은 Linux의 systemctl 명령에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!