Resposta curta:
-
bad
: mostraSystemd Unit files
status de ativação - você verá esse tipo de mensagem em sistemas que usam
systemd
-
você pode verificar o status de ativação usando o comando:
sudo systemctl is-enabled <unit-name>
se esse arquivo unitário for um serviço systemd nativo, ele fornecerá a saída
enabled
,disabled
, etc. Se não for um serviço systemd nativo, ele fornecerá ao relatório uma mensagem como.sudo systemctl is-enabled apache2 apache2.service is not a native service, redirecting to systemd-sysv-install Executing /lib/systemd/systemd-sysv-install is-enabled apache2 enabled
mas com o comando:
systemctl status apache2 or service apache2 status
dá status
bad
. (talvez seja porque não é capaz de imprimir uma mensagem completa ou o desenvolvedor decidiu imprimirbad
)
Longa resposta:
o que são arquivos de unidade de sistema?
Unidades são os objetos que o systemd sabe gerenciar. Estes são basicamente uma representação padronizada de recursos do sistema que podem ser gerenciados pelo conjunto de daemons e manipulados pelos utilitários fornecidos. Ele pode ser usado para abstrair serviços, recursos de rede, dispositivos, montagens de sistema de arquivos e pools de recursos isolados. Você pode ler em detalhes sobre unidades systemd aqui e aqui
exemplo:
systemctl status apache2
* apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2; bad; vendor preset: enabled)
Drop-In: /lib/systemd/system/apache2.service.d
'-apache2-systemd.conf
Active: active (running) since Wed 2016-10-12 14:29:42 UTC; 17s ago
Docs: man:systemd-sysv-generator(8)
Process: 1027 ExecStart=/etc/init.d/apache2 start (code=exited, status=0/SUCCESS)
systemctl irá verificar se apache2
é uma unidade nativa ou não. Se não, então
pedirá systemd-sysv-generator
para gerar um arquivo no formato de unidade que forneça suporte semelhante às unidades nativas. No exemplo acima, o arquivo gerado é mantido em
/lib/systemd/system/apache2.service.d/apache2-systemd.conf
Drop-In: /lib/systemd/system/apache2.service.d
'-apache2-systemd.conf
Nota: você pode encontrar o gerador em /lib/systemd/system-generators/systemd-sysv-generator
e você pode ler mais sobre isso
man systemd-sysv-generator
Ponto principal :
is-enabled NAME...
Checks whether any of the specified unit files are enabled (as with
enable). Returns an exit code of 0 if at least one is enabled,
non-zero otherwise. Prints the current enable status (see table).
To suppress this output, use --quiet.
Table 1. is-enabled output
+------------------+-------------------------+-----------+
|Name | Description | Exit Code |
+------------------+-------------------------+-----------+
|"enabled" | Enabled via | |
+------------------+ .wants/, .requires/ | |
|"enabled-runtime" | or alias symlinks | |
| | (permanently in | 0 |
| | /etc/systemd/system/, | |
| | or transiently in | |
| | /run/systemd/system/). | |
+------------------+-------------------------+-----------+
|"linked" | Made available through | |
+------------------+ one or more symlinks | |
|"linked-runtime" | to the unit file | |
| | (permanently in | |
| | /etc/systemd/system/ | |
| | or transiently in | > 0 |
| | /run/systemd/system/), | |
| | even though the unit | |
| | file might reside | |
| | outside of the unit | |
| | file search path. | |
+------------------+-------------------------+-----------+
|"masked" | Completely disabled, | |
+------------------+ so that any start | |
|"masked-runtime" | operation on it fails | |
| | (permanently in | > 0 |
| | /etc/systemd/system/ | |
| | or transiently in | |
| | /run/systemd/systemd/). | |
+------------------+-------------------------+-----------+
|"static" | The unit file is not | 0 |
| | enabled, and has no | |
| | provisions for enabling | |
| | in the "[Install]" | |
| | section. | |
+------------------+-------------------------+-----------+
|"indirect" | The unit file itself is | 0 |
| | not enabled, but it has | |
| | a non-empty Also= | |
| | setting in the | |
| | "[Install]" section, | |
| | listing other unit | |
| | files that might be | |
| | enabled. | |
+------------------+-------------------------+-----------+
|"disabled" | Unit file is not | > 0 |
| | enabled, but contains | |
| | an "[Install]" section | |
| | with installation | |
| | instructions. | |
+------------------+-------------------------+-----------+
|"bad" | Unit file is invalid or | > 0 |
| | another error occurred. | |
| | Note that is-enabled | |
| | will not actually | |
| | return this state, but | |
| | print an error message | |
| | instead. However the | |
| | unit file listing | |
| | printed by | |
| | list-unit-files might | |
| | show it. | |
+------------------+-------------------------+-----------+
se nós executarmos o comando:
sudo systemctl is-enabled ssh
enabled
sudo systemctl is-enabled docker
enabled
sudo systemctl is-enabled apache2
apache2.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install is-enabled apache2
enabled
você pode ver se as unidades são nativas para systemd, como ssh
e docker
, na saída acima mostrará apenas enabled
e para unidades que não são nativas como apache2
, mas ainda ativadas, elas dão mensagens com isso em vez de imprimir bad
aqui por causa dessa condição:
+------------------+-------------------------+-----------+
|"bad" | Unit file is invalid or | > 0 |
| | another error occurred. | |
| | Note that is-enabled | |
| | will not actually | |
| | return this state, but | |
| | print an error message | |
| | instead. However the | |
| | unit file listing | |
| | printed by | |
| | list-unit-files might | |
| | show it. | |
+------------------+-------------------------+-----------+
Solução:
status bad
não criará problemas (não tenho certeza se isso depende), mas não fornecerá todas as funcionalidades de systemctl
.
você pode esperar pela próxima versão desse package
que suportará systemd
. ou você pode escrever um arquivo de unidade para o seu serviço ou qualquer outro recurso usando referências dadas.
Você pode ler em detalhes sobre systemd, systemctl e unidades usando abaixo de Referências: