SHIFT

--- Sjoerd Hooft's InFormation Technology ---

User Tools

Site Tools


Sidebar

Recently Changed Pages:

View All Pages


View All Tags


LinkedIn




WIKI Disclaimer: As with most other things on the Internet, the content on this wiki is not supported. It was contributed by me and is published “as is”. It has worked for me, and might work for you.
Also note that any view or statement expressed anywhere on this site are strictly mine and not the opinions or views of my employer.


Pages with comments

View All Comments

opendsrestore

openDS LDAP Restore

This is a restore from LDAP data created in Script: Bash: TDS LDAP Backup.

Copy Backup ldif File to openDS Server

scp backup.ldif.gz sjoerd@opends.company.local:/tmp

Make Backup Ready For Use

gunzip backup.ldif.gz

Rename the unzipped file to import.ldif

mv backup.ldif import.ldif

Import / Restore the LDIF

/opt/OpenDS-2.2.0/bin/import-ldif \
  --ldifFile /tmp/import.ldif \
  --backendID userRoot \
  --replaceExisting \
  --rejectFile /tmp/import-rejected.log \
  --clearBackend \
  --bindDN cn=manager \
  --bindPassword <secret>

In logfile /var/log/opends/errors you can follow the progress of the import.

You could leave a comment if you were logged in.
opendsrestore.txt · Last modified: 2021/09/24 00:25 (external edit)