Tuesday, 29 November 2022

Admin Server Fails to startup : JPS-01055 / ORA-01017: invalid username/password

  

Admin Server fails to startup with error

  JPS-00027: There was an internal error: java.sql.SQLException: 
                        ORA-01017: invalid username/password; logon denied

                Check the Status of repository Schema. 
                Make sure they are not expired and are in open state.
    
    Here my  Schema's are in open state, but what I noticed was password for FDEV_OPSS was changed.
    If you remember the old password you can reset it to the same and restart admin server.
    If you don't recollect the old password then, 
    
        1. At database Level
                    Assume, alter user FDEV_OPSS identified by oracle123;

         2. Login to Server where weblogic is installed,
                Backup file         D:/Oracle/Middleware/FRMDomain/config/fmwconfig/jps-config.xml
                Backup folder     - D:\Oracle\Middleware\FRMDomain\config\jdbc

         3. Invoke wlst 
                cd D:\Oracle\Middleware\Oracle_Home\oracle_common\common\bin
                wlst.cmd
                    Execute below code from wlst prompt
                  modifyBootStrapCredential(jpsConfigFile='D:/Oracle/Middleware/FRMDomain/config/fmwconfig/jps-config.xml',username='FDEV_OPSS',password='oracle123')


        exit()

        4. Attempt to Start Admin Server
                You might still see some errors at startup but Admin server should startup.
        
        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
        Caused By: weblogic.common.resourcepool.ResourceSystemException: 
        Could not create connection for datasource 'opss-data-source'.
        The returned message is: ORA-01017: invalid username/password; logon denied
        It is likely that the login or password is not valid.
        It is also possible that something else is invalid in the configuration or that the database is not                available.
        >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
            


        5. Login to Admin console
                    Lock & edit
                        Services --> DataSources --> opss-data-source --> connection pool
                                                                                                                    |
                                                                                                         user=FDEV_OPSS
                                                                                                                    |
                                                                                                             Password
                                                                                                                    |
                                                                                                  Update the New Password
                                                                                                                    |
                                                                                                                 save
                                                                                                                    |
                                                                                                       Activate Changes
                                                                                                                    |
                                                                                              Do a clean restart to Admin Server





No comments:

Post a Comment