Linux Systemctl は、System V、service、chkconfig コマンドを置き換えるために使用されるシステム管理デーモン、ツール、ライブラリのコレクションです。初期プロセスは主に systemd システムとサービス マネージャーの制御を担当します。 Systemctl –help を見ると、コマンドが主に、systemd サービスへの制御コマンドのクエリまたは送信、管理ユニット サービスのコマンド、サービス ファイルに関連するコマンド、タスク、環境、およびスナップショットに関連するコマンド、構成の再ロードに分かれていることがわかります。 systemd サービス、および電源のオンとオフに関連する system コマンド。
1. 使用可能なユニットをすべてリストします
# systemctl list-unit-files
2. 実行中のユニットをすべてリストします
3. 失敗したユニットをすべてリストします
4.特定のユニット (crond.service など) が有効かどうかを確認します
# systemctl list-units
5. すべてのサービスを一覧表示します
# systemctl –failed
6. Linux での起動、再起動、停止の方法、リロードservices を実行し、サービス (httpd.service など) のステータスを確認します
# systemctl is-enabled crond.service
注: systemctl の start、restart、stop、reload コマンドを使用すると、ターミナルは何も出力せず、status コマンドのみが印刷できます。
7. 起動時にサービスをアクティブ化し、有効または無効にする方法 (つまり、システムの起動時に mysql.service サービスを自動的に開始する)
# systemctl list-unit-files –type=service
8. ブロックする方法 (無効にする)開始する) またはサービス (ntpdate.service など) を表示します
# systemctl start httpd.service # systemctl restart httpd.service # systemctl stop httpd.service # systemctl reload httpd.service # systemctl status httpd.service
9. systemctl コマンドを使用してサービスを強制終了します
# systemctl is-active mysql.service # systemctl enable mysql.service # systemctl disable mysql.service
10。
# systemctl mask ntpdate.service ln -s ‘/dev/null”/etc/systemd/system/ntpdate.service' # systemctl unmask ntpdate.service rm ‘/etc/systemd/system/ntpdate.service'
11. システムのマウント ポイントをマウント、アンマウント、再マウント、再ロードし、システム内のマウント ポイントのステータスを確認します
# systemctl kill crond
12. 起動時にマウント ポイントをアクティブ化、有効化、または無効化します。 (システム起動
# systemctl list-unit-files –type=mount
13. Linuxでマウントポイントをブロック(有効化できないようにする)または表示される
# systemctl start tmp.mount # systemctl stop tmp.mount # systemctl restart tmp.mount # systemctl reload tmp.mount # systemctl status tmp.mount
14. 利用可能なすべてのシステムソケットをリストする
# systemctl is-active tmp.mount # systemctl enable tmp.mount # systemctl disable tmp.mount
# systemctl mask tmp.mount
ln -s ‘/dev/null”/etc/systemd/system/tmp.mount'
# systemctl unmask tmp.mount
rm ‘/etc/systemd/system/tmp.mount'
16. サービスの依存関係リストを取得します
# systemctl list-unit-files –type=socket
# systemctl show mysql
18. 緊急モードに入ります
# systemctl list-dependencies httpd.service
19. 現在使用されているランレベルをリストします
# systemctl rescue
# systemctl emergency
# systemctl get-default
21、つまり、マルチユーザーモード (コマンドライン) の実行を開始します
# systemctl isolate runlevel5.target
りー
22. マルチユーザー モードまたはグラフィックス モードをデフォルトの実行レベルとして設定します
# systemctl isolate graphical.target
# systemctl isolate runlevel3.target
実行レベル 1: レスキュー、メンテナンス モード 実行レベル 3: マルチユーザー、グラフィカル システムなし 実行レベル 4: マルチユーザー、グラフィカル システムなし
実行レベル 5: マルチユーザー、グラフィカル システム
以上がLinux の systemctl コマンドの詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。