Quantcast
Channel: Oracle Trainings for Apps & Fusion DBA
Viewing all articles
Browse latest Browse all 1568

How to backup Oracle Internet Directory (OID) 11g – Data : Full / Partial

$
0
0

Oracle Internet Directory (OID) is LDAP Server from Oracle that stores LDAP data (user’s, groups, permission etc) in Oracle Database (under ODS schema).

OID consists of two parts

  1. LDAP Data: stored in ODS schema in Oracle database
  2. LDAP binaries , executable and logs : stored in OID ORACLE_HOME (different from database ORACLE_HOME) and ORACLE_INSTANCE (OID 11g)
OID Backup
  • For full OID backup :
    a) Backup OID database using database backup technology.
    b) Backup file system OID ORACLE_HOME and ORACLE_INSTANCE in 11g OID
  • For partial OID backup (i.e. cn=Users or cn=Groups container and all entries under that container) in LDIF fileldifwrite connect=”[database_connect_string]”  basedn=”[DN_of_entry_to_backup]” ldiffile=”backupfile.ldif”where  [database_connect_string] is TNSNAME entry defined in ORACLE_INSTANCE/config/tnsnames.ora

    Example to backup cn=Users and all the entries under this

    ldifwrite connect=”OIDDB”  basedn=”cn=Users,dc=mydomain,dc=co,dc=uk” ldiffile=”backupfile.ldif”

 

Things good to know:

  • There is ldifwrite in Unix/Linux O.S. , use ldifwrite from $ORACLE_HOME/ldap/bin
  • ldifwrite command will prompt for OID password. Enter ODS schema password here (This is different from cn=orcladmin password)

 

References

Related Posts for OID


  1. Oracle Internet Directory OID
  2. Oracle Internet Directory – Basics II
  3. OID to OID/Active Directory/iPlanet other LDAP Server Integration
  4. Multi Master OID Replication
  5. OID Architecture
  6. Oracle Internet Directory , OID Troubleshooting
  7. Server Chaining in OID
  8. OID Quesries/ Scripts FAQ
  9. OIDADMIN Client
  10. Oracle Identity Management (OID) 11g installation Issues on Linux
  11. OID 11g – Oracle Directory Services Manager (ODSM)
  12. DIP : Synchronization, Provisioing, Connectors, DSS in Oracle Directory Services (ODS) 11g
  13. OID Replication – Suppliers, Consumers, DRG, ASR/LDAP based replication
  14. ASR setup has failed – Error occurred while dropping database link : ORA-02084 : database name is missing a component while Configuring Multi Master OID replication using “remtool -asrsetup”
  15. OID 11g Down : Unable to Start OID 11g using OPMN (ODS schema locked ORA-28002)
  16. OID/Directory Services 11g – Schema, Object Class, Attributes
  17. OID 11g Distributed Install : DIP/ODSM (Java Component) & OID (LDAP/REPLD) on different machine
  18. OID Server Mode R, RW, RM: LDAP: error code 53 – Server currently in read only mode
  19. How to change OID 11g database schema (ODS) password
  20. How to add custom attribute, Object Classe in OID from command line or GUI
  21. Oracle Internet Directory (OID) and Real Application Cluster (RAC) database : Things you must know
  22. How to Update User Password in OID (single account or bulk) – command line or GUI
  23. Error starting OID 11g during configuration stage of OID installation on Windows Server “ProvisionException: Failed to start the component”
  24. How to delete Entries in OID 11g in Bulk – Delete Failed : Ldap Error Code 66 Not allowed on Non-Leaf
  25. How to find latest changelog number (or changes) in OID ?
  26. Context Initialization Error on running ldapsearch commands on OID Server
  27. How to find OID version and patches applied on OID Home ?
  28. How to change OID 11g LDAP/LDAPS listen port
  29. How to find/audit Failed Login Attempts in OID 11g
  30. Step by Step configuration of OID Multi Master Replication – LDAP based in OID 11g
  31. OID 11g LDAP based Multi Master replication : Configuration Entries you must know
  32. Configure SSL for Oracle Internet Directory (OID)
  33. How to backup Oracle Internet Directory (OID) 11g – Data : Full / Partial

Viewing all articles
Browse latest Browse all 1568