简体   繁体   English

如何解锁用户 xelsysadm?

[英]How to unlock user xelsysadm?

登录 OIM 时,xelsysadm 帐户被锁定,知道如何解锁 xelsysadm 帐户吗?

One of the easiest way is to :最简单的方法之一是:

    update usr set usr_login_attempts_ctr=0 where usr_login='XELSYSADM';
    update usr set usr_locked=0 where usr_login='XELSYSADM';
    Commit;

If this doesn't help, you can try below approach, this should work for sure.如果这没有帮助,您可以尝试以下方法,这肯定会起作用。

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)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM