Linux 再起動サービス コマンド
再起動:
service 服务名 restart
または
systemctl restart 服务名
service と systemctl
##1.service コマンド
service コマンドを実際に実行してみる/etc/init.d ディレクトリにコピーして関連プログラムを実行します
# service命令启动redis脚本 service redis start # 直接启动redis脚本 /etc/init.d/redis start # 开机自启动 update-rc.d redis defaultsスクリプトは自分で記述する必要があります
2.systemctl コマンド systemd は、Linux システムの最新の初期化システム (init) であり、その機能は、システムの起動速度を向上させ、できるだけ少ないプロセスを起動し、できるだけ多くのプロセスを同時に起動することです。 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) に配置されます。 4 つの主なファイル タイプ (mount、.service、.target、.wants)。
以上がLinuxの再起動サービスコマンドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。