Changing RCU Passwords

To change the schema password for RCU components, you change the password in the database.

For example, to change the password of the schema VBC_STB:

  1. Stop services:
    • Oracle Enterprise Performance Management System services
    • Node Manager Windows Service and Oracle HTTP Server, if you are using Oracle HTTP Server as your web server
    • WebLogic Administration Server
  2. Connect to the database using SQL*Plus. Connect as a user with SYSDBA privileges.
  3. Follow the steps to change the schema password for Oracle Platform Security Services. See Changing the Schema Password for Oracle Platform Security Services.
  4. Issue the following command:
    
    SQL> ALTER USER schema IDENTIFIED BY new_password;
    COMMIT;
    

    For example, to change the VBC_ STB password to abc123 where VBC is simply an example of the RCU (Repository Creation Utility) prefix used on the first Foundation server configuration in the environment as mentioned in the topic Updating RCU Schema Properties:

    
    SQL> ALTER USER VBC_STB IDENTIFIED BY abc123;
    COMMIT;
    

    For SQL Server, issue the following command:

    ALTER LOGIN user WITH PASSWORD = new_password;

Note:

All RCU Components must be updated with the same password.

(Schemas to change for RCU components: VBC_IAU; VBC_IAU_APPEND; VBC_IAU_VIEWER; VBC_MDS;VBC_OPSS; VBC_STB; VBC_UMS; VBC_WLS; VBC_WLS_RUNTIME)

.