O que "systemctl daemon-reload" faz?

47

Eu tenho um serviço que parou de repente. Tentei reiniciar esse serviço, mas falhei e pedi para executar "systemctl daemon-reload".

O que exatamente faz? O que é um "daemon recarregado?"

John
fonte

Respostas:

47

man systemctl diz:

   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.

Portanto, é uma recarga "suave", essencialmente; tomando configurações alteradas do sistema de arquivos e regenerando árvores de dependência .

Consequentemente, systemd.generatorafirma:

Geradores são pequenos binários que vivem em / usr / lib / systemd / user-generators / e outros diretórios listados acima. O systemd (1) executará esses binários muito cedo na inicialização e no tempo de recarregamento da configuração - antes que os arquivos da unidade sejam carregados. Os geradores podem gerar arquivos de unidade dinamicamente ou criar links simbólicos para arquivos de unidade para adicionar dependências adicionais, estendendo ou substituindo definições existentes. Seu principal objetivo é converter arquivos de configuração que não são arquivos de unidades nativas dinamicamente em arquivos de unidades nativas.

   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.
ILMostro_7
fonte