Le 16/09/2015 15:30, Jean-Marc BAJET a écrit :
Hello,

Thanks for your quick answer, I tried :

Lsc 2.1.3 with the same script :
- Sync from 389 Directory Server 1.2.8 to ODJ 2.6 : KO - only new entries are added to the destination, changes are not updated at all - Sync from 389 Directory Server 1.3.3 to ODJ 2.6 : KO - only new entries are added to the destination, changes are not updated at all - Sync from ODJ 2.6 to ODJ 2.6 : OK - sync works successfully, including changes.

When no changes are updated (first 2 cases with 389 DS) , in debug mode, I have no error reported to the console (no error, no modified entries, All entries: 188, to modify entries: 0, successfully modified entries: 0, errors: 0).

Lsc 1.2.2 with the same (converted) script :
- Sync from 389 Directory Server 1.2.8 to ODJ 2.4 : OK - sync works successfully, including changes.

Is 389 DS supported by Lsc 2.1.3 ?
Or may be we miss something else ...



LSC supports all LDAPv3 servers.

Try this minimal logback configuration:

----
<?xml version="1.0" encoding="UTF-8"?>

<configuration>

        <!-- Standard output to console -->
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
                        <layout class="org.lsc.utils.output.LdifLayout">
<Pattern>%date{MMM dd HH:mm:ss} - %-5level - %message%n</Pattern>
                        </layout>
                </encoder>
        </appender>

        <!-- Other messages -->
        <logger name="communicationLogger">
                <appender-ref ref="CONSOLE"/>
        </logger>
        <logger name="org.apache" level="ERROR">
                <appender-ref ref="CONSOLE"/>
        </logger>
        <logger name="poolLogger">
                <appender-ref ref="CONSOLE"/>
        </logger>
        <!-- Root logger -->
        <root level="DEBUG">
                <appender-ref ref="CONSOLE"/>
        </root>
</configuration>
---

And see what happens. I think the conversion between old and new configuration format may not be good. Try to send your lsc.xml if you don't find the issue yourself.


--
Clément OUDOT
Consultant en logiciels libres, Expert infrastructure et sécurité
Savoir-faire Linux

_______________________________________________________________
Ldap Synchronization Connector (LSC) - http://lsc-project.org

lsc-users mailing list
[email protected]
http://lists.lsc-project.org/listinfo/lsc-users

Reply via email to