named não inicia ao usar systemctl

9

Estou tendo problemas para receber um nome para começar a usar o systemd no spin do Fedora 18 Raspberry Pi. Começa, então, alguns instantes depois, há um tempo limite e ele falha. Se eu executar os comandos no named.service manualmente, named começa bem. Eu não sei qual é o tempo limite que o systemctl está procurando ou onde está sendo invocado. Eu li as man pages para systemctl , systemd e outros e continuarei pesquisando isso, mas se alguém tiver alguma indicação, isso seria ótimo.

systemctl status named.service output:

named.service - Berkeley Internet Name Domain (DNS)
          Loaded: loaded (/usr/lib/systemd/system/named.service; disabled)
          Active: failed (Result: timeout) since Tue 2013-01-29 14:36:41 EST; 35min ago
         Process: 4189 ExecStart=/usr/sbin/named -u named $OPTIONS (code=exited, status=0/SUCCESS)
         Process: 4186 ExecStartPre=/usr/sbin/named-checkconf -z /etc/named.conf (code=exited, status=0/SUCCESS)
         Process: 4183 ExecStartPre=/usr/libexec/generate-rndc-key.sh (code=exited, status=0/SUCCESS)

Jan 29 14:35:12 raspi.example.com named[4191]: all zones loaded
Jan 29 14:35:12 raspi.example.com systemd[1]: PID file /run/named/named.pid not readable (yet?) after start.
Jan 29 14:35:12 raspi.example.com named[4191]: running
Jan 29 14:36:41 raspi.example.com systemd[1]: named.service operation timed out. Terminating.
Jan 29 14:36:41 raspi.example.com named[4191]: shutting down
Jan 29 14:36:41 raspi.example.com named[4191]: stopping command channel on 127.0.0.1#953
Jan 29 14:36:41 raspi.example.com named[4191]: no longer listening on 127.0.0.1#53
Jan 29 14:36:41 raspi.example.com named[4191]: exiting
Jan 29 14:36:41 raspi.example.com systemd[1]: Failed to start Berkeley Internet Name Domain (DNS).
Jan 29 14:36:41 raspi.example.com systemd[1]: Unit named.service entered failed state  

O arquivo named.service

[Unit]
Description=Berkeley Internet Name Domain (DNS)
Wants=nss-lookup.target
Before=nss-lookup.target
After=network.target

[Service]
Type=forking
EnvironmentFile=-/etc/sysconfig/named
Environment=KRB5_KTNAME=/etc/named.keytab
PIDFile=/run/named/named.pid
ExecStartPre=/usr/libexec/generate-rndc-key.sh
ExecStartPre=/usr/sbin/named-checkconf -z /etc/named.conf
ExecStart=/usr/sbin/named -u named $OPTIONS
ExecReload=/bin/sh -c '/usr/sbin/rndc reload > /dev/null 2>&1 || /bin/kill -HUP $MAINPID'
ExecStop=/bin/sh -c '/usr/sbin/rndc stop > /dev/null 2>&1 || /bin/kill -TERM $MAINPID'
PrivateTmp=true
[Install]
WantedBy=multi-user.target
    
por mike fratto 12.02.2013 / 23:45

2 respostas

8

Respondido.

Esta foi a linha:

PID file /run/named/named.pid not readable (yet?) after start.

O (ainda?) me jogou. Eu pensei que a mensagem estava sendo lançada porque estava tentando ler o arquivo PID antes que ele fosse escrito pelo nome e como eu não vi um erro depois disso, percebi que ele eventualmente o leu com sucesso. Me bobo por ler em ingles. De fato, named grava o pid to /var/run/named/named.pid , que não estava sendo lido por systemctl (ou systemd), nunca.

Alterou o PIDFile em named.service e ele é iniciado. Alegria.

    
por 13.02.2013 / 01:54
1
systemctl enable named 

é necessário antes

systemctl start named
    
por 07.03.2016 / 21:06