web-dev-qa-db-ja.com

「systemctl daemon-reload」は何をしますか?

急に止まったサービスがあります。そのサービスを再起動しようとしましたが、失敗し、「systemctl daemon-reload」を実行するように求められました。

それは正確に何をしますか? 「デーモンのリロード」とは何ですか?

61
John

man systemctlさんのコメント:

   daemon-reload
       Reload systemd manager configuration. This will rerun all generators (see systemd.generator(7)), reload
       all unit files, and recreate the entire dependency tree. While the daemon is being reloaded, all sockets
       systemd listens on behalf of user configuration will stay accessible.

       This command should not be confused with the reload command.

つまり、これは本質的に「ソフト」リロードです。 変更された構成をファイルシステムから取得し、依存関係ツリーを再生成します

したがって、systemd.generator状態:

ジェネレーターは、/ usr/lib/systemd/user-generators /および上記のその他のディレクトリにある小さなバイナリです。 systemd(1)は、起動時と構成の再読み込み時の非常に早い段階で、ユニットファイルが読み込まれる前に、これらのバイナリを実行します。ジェネレーターは、ユニットファイルを動的に生成したり、ユニットファイルへのシンボリックリンクを作成して、依存関係を追加したり、既存の定義を拡張またはオーバーライドしたりできます。その主な目的は、ネイティブユニットファイルではない構成ファイルを動的にネイティブユニットファイルに変換することです。

   Generators are loaded from a set of paths determined during compilation, listed above. System and user
   generators are loaded from directories with names ending in system-generators/ and user-generators/,
   respectively. Generators found in directories listed earlier override the ones with the same name in
   directories lower in the list. A symlink to /dev/null or an empty file can be used to mask a generator,
   thereby preventing it from running. Please note that the order of the two directories with the highest
   priority is reversed with respect to the unit load path and generators in /run overwrite those in /etc.

   After installing new generators or updating the configuration, systemctl daemon-reload may be executed. This
   will delete the previous configuration created by generators, re-run all generators, and cause systemd to
   reload units from disk. See systemctl(1) for more information.
55
ILMostro_7