Что делает «systemctl daemon-reload»?


48

У меня есть служба, которая внезапно остановилась. Я попытался перезапустить эту службу, но потерпел неудачу и попросил запустить «systemctl daemon-reload».

Что именно делать? Что такое «перезагрузка демона»?

Ответы:


47

человек 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.
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.