Bug 1069678
| Summary: | named Service Fails: unable to signal parent that we otherwise started successfully | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | emoziko <emobuxuti> | ||||
| Component: | bind | Assignee: | Tomáš Hozza <thozza> | ||||
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 20 | CC: | emobuxuti, psimerda, thozza, vonsch | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | x86_64 | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2014-02-27 06:50:43 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
|
Description
emoziko
2014-02-25 13:59:17 UTC
Can you please attach /var/named/data/named.run ? thanks Created attachment 867818 [details]
named.run file
Hello Tomas. I attached named.run file, its compressed in tar.gz because it's more than 40MB. I think that this issue related to systemd, because bind starts with "named" command, but not with service or systemctl command. (In reply to emoziko from comment #3) > Hello Tomas. I attached named.run file, its compressed in tar.gz because > it's more than 40MB. > > I think that this issue related to systemd, because bind starts with "named" > command, but not with service or systemctl command. Hi. Thank you for the BIND log. I just want to make sure and investigate the log file thoroughly. I'll drop a comment here when I have some new information... So the problem is that it takes too long for BIND to start up when loading such a number of zones. After a default timeout systemd kills the process. You should copy the default named.service file to a /etc/systemd/system dir which has higher priority and specify custom timeout for the startup. 1. cp /usr/lib/systemd/system/named.service /etc/systemd/system/ 2. edit the /etc/systemd/system/named.service and add 'TimeoutStartSec=' option there or read 'man systemd.service' for more information. I noticed that your server sends NOTIFY for each zone it loads. If you don't have any slave servers configured I would advise you to use 'notify no;' statement in the options section of named.conf to stop the server from sending NOTIFY. From my point of view this is NOT A BUG in named nor in systemd. I'll wait for your confirmation that some of described options worked for you. Hello Tomas. I did as you said and problem is solved. TimeoutStartSec= option helped me Yes I think it's not a bug and sorry for that. Thank you for your help and time. (In reply to emoziko from comment #6) > Hello Tomas. > > I did as you said and problem is solved. TimeoutStartSec= option helped me > > Yes I think it's not a bug and sorry for that. Thank you for your help and > time. No problem. You're welcome. I'm glad that it helped.... |