Как разблокировать пользователя xelsysadm?

При входе в OIM учетная запись xelsysadm была заблокирована. Есть идеи, как разблокировать учетную запись xelsysadm?


person SME    schedule 14.03.2017    source источник


Ответы (1)


Один из самых простых способов:

    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)
person ps2090    schedule 14.03.2017