Fndcpass: Author - A.Kishore/Sachin
Fndcpass: Author - A.Kishore/Sachin
info
FNDCPASS
Oracle Applications provides a command line utility, FNDCPASS, to change/reset Oracle Applications schema passwords. This utility changes the password registered in Oracle Applications tables, changes the schema password in the database and can also change user passwords. For example, we can change the APPS password using FNDCPASS and also any other schema in the EBS database. FNDCPASS can also be used to change the password of an application user (like sysadmin). FNDCPASS uses four modes to change application schema passwords. (i) SYSTEM ,It is used to change APPS/APPLSYS password (ii) USER , It is used to change oracle applications user like SYSADMIN (iii) ORACLE, It is used to change the password of oracle schema like GL,AP (iv) ALLORACLE , It is used to change all passwords of all schema. Please Note: We cannot change a schema name, such as APPLSYS or GL, after a product installed, with FNDCPASS. Ensure that the entire Oracle Applications system has been shut down before changing any schema passwords. All users should log out and the Applications system should be down before running this utility. If Oracle Applications user passwords are being changed then the relevant users should not be logged in.Before changing any passwords, you should make a backup of the tables FND_USER and FND_ORACLE_USERID
FNDCPASS < logon > 0 Y < system/password> SYSTEM < username > < new_password> logon - The Oracle username/password. system/password - The username and password for the SYSTEM DBA account. username - The APPLSYS username. For example, 'applsys'. new_password - The new password.
2
When specifying the SYSTEM token, FNDCPASS expects arguments to be the APPLSYS username and the new password.
the
next
Step 3 : Now we will change APPS password using FNDCPASS ,as shown below. $ FNDCPASS apps/apps 0 Y system/manager SYSTEM APPLSYS KISHORE
FNDCPASS password. uses the following arguments when changing the APPLSYS
This command does the following: (a) Validates APPLSYS. (b) Re-registers password in Oracle Applications. (c) Changes the APPLSYS and all APPS passwords (for multi-APPS schema installations) to the same password.Because everything with a Privilege Level [set to any of ('E', 'U','D')] in the FND_ORACLE_USERID table must always have the same password, FNDCPASS updates these passwords as well as APPLSYS's password. For example, the APPS password will be updated when the APPLSYS password is changed. ALTER USER is executed to change the ORACLE password for the above ORACLE users. Step 4 : Check the log file using vi,if any errors are there :
Step 5 : Execute autoconfig. $ cd /$COMMON_TOP/admin/scripts/PROD_erp $ adautocfg.sh Enter the APPS user password: Here we will put the new password that is KISHORE
Step 6 : Check the log file generated by autoconfig using vi, for errors (if any)
Step 7 : Now login to sqlplus using the new password as shown below: $ sqlplus apps/kishore
Step 2 : Check the log file using vi editor for any errors.
Its working
$ FNDCPASS apps/apps 0 Y system/manager ORACLE GL gl1 We have changed the GL password to gl1
When specifying the ORACLE token, FNDCPASS expects the next arguments to be an ORACLE username and the new password. Step 2 : Check log file for any errors using vi editor
Step 3 : Login to sqlplus with the new password and verify . $ sqlplus gl/gl1
11
$ FNDCPASS apps/apps 0 Y system/manager ALLORACLE welcome here we have changed all oracle users password to welcome. Step 3 : Check the log file for any errors. Step 4 : Now execute autoconfig . Step 5 : Check the log file for any errors. Step 6 : Now login to sqlplus with the new password and verify .
IMPORTANT NOTE : 1. If we changed the APPLSYSPUB password, then update the password in these files: FND_TOP/resource/appsweb.cfg OA_HTML/bin/appsweb.cfg INST_TOP/admin/fnd/12.0.0/secure/< host_name>_< dbname>.dbc Please Note: When changing APPS (or APPLSYS) and APPLSYSPUB passwords,do not restart the system until the entire password change process has been completed. 2. Verify the new password. If we changed the password for APPS (and APPLSYS), restart all concurrent managers, then log on to Oracle Applications to test the new password.
13