Bug 210155 - openldap init script does not respect multiple database replications
Summary: openldap init script does not respect multiple database replications
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: openldap
Version: 6
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Jan Safranek
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2006-10-10 14:35 UTC by Sascha Rommelfangen
Modified: 2007-11-30 22:11 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2007-06-08 11:55:16 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Sascha Rommelfangen 2006-10-10 14:35:01 UTC
Description of problem:
If unsing multiple databases (trees) within openldap and multiple replication,
only one slurpd is started not taking care of multiple configured replogfiles.

Version-Release number of selected component (if applicable):
FC3 init script (the problem should be the same for more recent versions like FC5)

How reproducible:


Steps to Reproduce:
1. Create two databases in /etc/openldap/slapd.conf
2. Create for each a replication entry with its own replogfile 
3. restart /etc/init.d/ldap
4. modify both databases (ldapadd, ...)
  
Actual results:
The second database of slapd.conf never gets successfully replicated as there is
only one slurpd running

Expected results:
As many slurpds should be started as databases are to be replicated

Additional info:

This patch takes care if there is more than one replog entry and counts and
starts an appropriate slurpd

71c71,81
<                 daemon ${slurpd} $OPTIONS $SLURPD_OPTIONS
---
>               i=1;
>               for replogfile in `grep  "^replogfile" /etc/openldap/slapd.conf`
>               do
>                 if  "$replogfile" != "replogfile" 
>                 then
>                   daemon ${slurpd} -r $replogfile -n $i
>                   i=$[i+1]
>                 fi
>               done

Comment 1 Christian Iseli 2007-01-22 11:41:24 UTC
This report targets the FC3 or FC4 products, which have now been EOL'd.

Could you please check that it still applies to a current Fedora release, and
either update the target product or close it ?

Thanks.

Comment 2 Sascha Rommelfangen 2007-01-22 12:32:56 UTC
Checked FC5: for the reported part the init script is still the same and only
respecting the first occurence of 'replogfile':
        if [ $RETVAL -eq 0 ]; then
            if grep -q "^replogfile" /etc/openldap/slapd.conf; then
                prog=`basename ${slurpd}`
                echo -n $"Starting $prog: "
                daemon ${slurpd} $OPTIONS $SLURPD_OPTIONS
                RETVAL=$?
                echo
            fi
        fi



Comment 3 Sascha Rommelfangen 2007-02-06 12:25:12 UTC
Also still the same startup for FC6

Comment 4 Alexandre Dulaunoy 2007-02-06 12:56:44 UTC
We had the same issue with all the Fedora Core and we used a similar update in
the ldap init script (as described by the ticket submitter). Could you update
the init script to add the automatic start of the required slurp based on the
replogfile entries ? That would save us to patch the file on a bunch of
production LDAP servers. 

Comment 5 Jan Safranek 2007-06-08 11:55:16 UTC
Fixed in openldap-2.3.34-3.fc8


Note You need to log in before you can comment on or make changes to this bug.