Bug 554316
| Summary: | ISC BIND (named) crashes with "keytable.c:286: REQUIRE(nextnodep != ((void *)0) && *nextnodep == ((void *)0)) failed" | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Adam Tkac <atkac> |
| Component: | bind | Assignee: | Adam Tkac <atkac> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | high | Docs Contact: | |
| Priority: | low | ||
| Version: | 12 | CC: | atkac, chrisw, franta, gary, jan.kratochvil, ovasik, pwouters, raytodd |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | bind-9.6.1-15.P3.fc12 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 549284 | Environment: | |
| Last Closed: | 2010-01-25 11:58:57 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 549284 | ||
| Bug Blocks: | |||
|
Description
Adam Tkac
2010-01-11 11:25:21 UTC
*** Bug 551003 has been marked as a duplicate of this bug. *** bind-9.6.1-13.P2.fc12.x86_64 Still have the problem with bind-9.6.1-13.P2.fc12.i686 I just built updated package but I'm not going to release it because I expect upstream release soon (~ 1 week). You can use it if you would like to fix this issue right now. Build is located on http://kojiweb.fedoraproject.org/koji/buildinfo?buildID=150708. Tell them to hurry up, I have about 2 crashes a day from this. I have created a crude script to monitor the daemon via a cron job for the servers I maintain. #!/bin/bash CHECK=`/sbin/service named status | grep -c "server is up"` if [ $CHECK = 0 ]; then service named restart fi exit 0 I call this file 'named-monitor' and I placed it in /root with 700 permissions and root:root ownership. I call the script from /etc/cron.d/named-monitor thus: # Cron script to run named-check every 5 minutes. */5 * * * * root /root/named-check If the named daemon is not running for any reason, it will be restarted. If it is running, the script simply exits. This should keep us going until the new packages are released. HTH :) On four production servers bind-9.6.1-8.P2.fc11.i586 from koji run over 13 hours without failure. This version is probably patched similarly to bind-9.6.1-14.P2.fc12 On four servers bind-9.6.1-8.P2.fc11.i586 successfully run for four days, thus this bug is probably solved. Fixed in bind-9.6.1-15.P3.fc12. |