Linux preso na inicialização: um job de início está sendo executado

0

Eu tenho um servidor NixOS que ficou preso na inicialização depois que eu o reiniciei. Está exibindo a seguinte mensagem: A start job is running for Waiting for NixOps keys (1d 3h / no limit)

Esse trabalho que o sistema está esperando é um serviço systemd. Eu fiz algumas pesquisas e descobri que quando esse problema ocorre, geralmente expira após um certo tempo e o sistema inicializa. No entanto, no meu caso, ele está preso há mais de um dia. Alguma idéia de como ignorar esse estado?

    
por ham_b 08.06.2017 / 11:25

1 resposta

1

De acordo com o manual do NixOps ...

Keys from deployment.keys are stored under /run/ on a temporary filesystem and will not persist across a reboot...Note that all nixops commands implicitly upload keys when appropriate, so manually sending keys should only be necessary after an unattended reboot.

Experimente o comando nixops send-keys .

nixops send-keys [ --include machine-name... ] [ --exclude machine-name... ]
Description

This command uploads the keys described in deployment.keys to remote machines in the /run/keys/ directory.

Keys are not persisted across reboots by default. If a machine reboot is triggered from outside nixops, it will need nixops send-keys to repopulate its keys.

Note that nixops deploy does an implicit send-keys where appropriate, so manually sending keys is only necessary after unattended reboots.
Options

--include machine-name...

    Only operate on the machines explicitly mentioned here, excluding other machines.
--exclude machine-name...

    Only operate on the machines that are not mentioned here.

Veja link

    
por 08.06.2017 / 15:11