登录 OIM 时,xelsysadm 帐户被锁定,知道如何解锁 xelsysadm 帐户吗?
问问题
1700 次
1 回答
5
最简单的方法之一是:
update usr set usr_login_attempts_ctr=0 where usr_login='XELSYSADM';
update usr set usr_locked=0 where usr_login='XELSYSADM';
Commit;
如果这没有帮助,您可以尝试以下方法,这应该可以肯定。
1.Go to the <OIM_ORACLE_HOME>/server/bin directory.
2.Open the oimadminpasswd_wls.properties file.
3.Update the following variables in the oimadminpasswd_wls.properties file.
JAVA_HOME=/opt/oim/Middleware/jdk
COMMON_COMPONENTS_HOME=/opt/oim/Middleware/oracle_common
OIM_ORACLE_HOME= /opt/oim/Middleware/Oracle_IDM1
ORACLE_SECURITY_JPS_CONFIG = /opt/oim/Middleware/user_projects/domains/idm_domain/config/fmwconfig /jps-config-jse.xml
DOMAIN_HOME=/opt/oim/Middleware/user_projects/domains/idm_domain
DBURL=jdbc:oracle:thin:@<database server>:1521/<OIM URL>
DBSCHEMAUSER=DEV_OIM
#It should be true only if there is LDAP Sync and OIM OAM integration)
OIM_OAM_INTG_ENABLED=false
#Only update this attribute if you have LDAP Sync enabled and have OIM-OAM integration
LDAPURL=
#Only update this attribute if you have LDAP Sync enabled and have OIM-OAM integration)
LDAPADMINUSER=
#Only update this attribute if you have LDAP Sync enabled and have OIM-OAM integration)
OIM_ADMIN_LDAP_DN=
4.Run the ./oimadminpasswd_wls.sh oimadminpasswd_wls.properties
5.Provide the correct input for each question as below
Enter OIM DB Schema Password :
Enter OIM Adminstrator xelsysadm new Password:
Re-enter OIM Adminstrator xelsysadm new Password:
(Note:You can set the same password as earlier)
于 2017-03-14T09:17:56.997 回答