linux 서비스 다시 시작 명령
다시 시작:
service 服务名 restart
또는
systemctl restart 服务名
서비스 및 systemctl
1.service command
service command는 실제로 /etc/init.d 디렉토리로 이동하여 관련 프로그램을 실행합니다# 🎜🎜#
# service命令启动redis脚本 service redis start # 直接启动redis脚本 /etc/init.d/redis start # 开机自启动 update-rc.d redis defaults스크립트는 직접 작성해야 합니다
2.systemctl commandsystemd는 최신 초기화 시스템(init)입니다. Linux 시스템의 기능은 시스템의 시작 속도를 향상시키고, 가능한 한 적은 수의 프로세스를 시작하고, 가능한 한 많은 프로세스를 동시에 시작하는 것입니다. systemd에 해당하는 프로세스 관리 명령은 systemctl
즉, systemctl도 /etc/init.d 디렉터리로 이동하여 보고 실행합니다. 관련 프로그램
systemctl redis startsy stemctl redis stop # 开机自启动systemctl enable redis2) systemctl 명령은 systemd의 리소스를 관리합니다. Unit
systemd의 Unit은 /usr/lib/systemd/system(Centos) 또는 /etc/systemd/system 디렉터리에 있습니다( Ubuntu)에는 .mount, .service, .target, .wants의 네 가지 주요 유형 파일이 있습니다.
위 내용은 리눅스 재시작 서비스 명령의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!