Bug 815801

Summary: [Upgrade] Prevent deadlock after bind-dyndb-ldap upgrade
Product: Red Hat Enterprise Linux 6 Reporter: Dmitri Pal <dpal>
Component: ipaAssignee: Rob Crittenden <rcritten>
Status: CLOSED NOTABUG QA Contact: IDM QE LIST <seceng-idm-qe-list>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 6.3CC: mkosek
Target Milestone: rc   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-04-24 15:46:48 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:

Description Dmitri Pal 2012-04-24 14:34:58 UTC
This bug is created as a clone of upstream ticket:
https://fedorahosted.org/freeipa/ticket/2668

During upgrade is necessary to adjust "connections" parameter in /etc/named.conf.

Minimal value depends on configuration:
- without persistent search: "connections 2"
- with persistent search enabled: "connections 3"

Another option is to simply delete "connections" parameter, if it's <= 2 (and let plugin use correct default value).


Required parameters without persistent search:
{{{
dynamic-db "ipa" {
        arg "psearch no";
        arg "connections 2";
};
}}}


Required parameters with persistent search:
{{{
dynamic-db "ipa" {
        arg "psearch yes";
        arg "connections 3";
};
}}}