There are 2 ways to modify OID configuration set.
1. Through Oracle Directory Manager console.
A. Login to Oracle Directory Manager console,
B. Click on Server Management --> Default Configuration Set
Modify required values
2. From backend using ldapmodify.
A. To list configset from command prompt
ldapsearch -p -h -D cn=orcladmin -w -L -b "cn=configset0,cn=osdldapd,cn=subconfigsubentry" -s base objectclass=*
dn: cn=configset0, cn=osdldapd, cn=subconfigsubentry
orclsslwalleturl: file:
orclsslversion: 3
orclsslport: 636
orclsslenable: 2
orclsslauthentication: 1
orclserverprocs: 4
orclsaslmechanism: DIGEST-MD5
orclsaslmechanism: EXTERNAL
orclsaslcipherchoice: rc4-56
orclsaslcipherchoice: des
orclsaslcipherchoice: 3des
orclsaslcipherchoice: rc4
orclsaslcipherchoice: rc4-40
orclsaslauthenticationmode: 1
orclnormdn: cn=configset0,cn=osdldapd,cn=subconfigsubentry
orclnonsslport: 389
orclmaxcc: 10
objectclass: top
objectclass: orclConfigSet
objectclass: orclLDAPSubConfig
cn: configset0B.
B. To modify any of the parameters listed above, follow the command example below.
ldapmodify -p -h -D cn=orcladmin -w -v
dn: cn=configset0,cn=osdldapd,cn=subconfigsubentry
changetype: modify
replace: orclserverprocs
orclserverprocs: 8
C. Use query in step A to check if the value is changed.
1. Through Oracle Directory Manager console.
A. Login to Oracle Directory Manager console,
B. Click on Server Management --> Default Configuration Set
Modify required values
2. From backend using ldapmodify.
A. To list configset from command prompt
ldapsearch -p
dn: cn=configset0, cn=osdldapd, cn=subconfigsubentry
orclsslwalleturl: file:
orclsslversion: 3
orclsslport: 636
orclsslenable: 2
orclsslauthentication: 1
orclserverprocs: 4
orclsaslmechanism: DIGEST-MD5
orclsaslmechanism: EXTERNAL
orclsaslcipherchoice: rc4-56
orclsaslcipherchoice: des
orclsaslcipherchoice: 3des
orclsaslcipherchoice: rc4
orclsaslcipherchoice: rc4-40
orclsaslauthenticationmode: 1
orclnormdn: cn=configset0,cn=osdldapd,cn=subconfigsubentry
orclnonsslport: 389
orclmaxcc: 10
objectclass: top
objectclass: orclConfigSet
objectclass: orclLDAPSubConfig
cn: configset0B.
B. To modify any of the parameters listed above, follow the command example below.
ldapmodify -p
dn: cn=configset0,cn=osdldapd,cn=subconfigsubentry
changetype: modify
replace: orclserverprocs
orclserverprocs: 8
C. Use query in step A to check if the value is changed.
Comments