**************************************** Step By Step Procedure ******************************************************
Well Resetting the password for ASMSNMP user is same as of any other oracle user.
Here we will see 2 methods to achieve it.
#########################################
# 1) Using Alter User Command
#########################################
Set ASM Environment and Login to the instance as "sysasm" privilege and reset password like below.
SQL> Alter user asmsnmp identified by welcome123;
User altered.
=====================================================================================================================
#########################################
# 2) Using ASMCMD Prompt
#########################################
We can modify the password for ASMSNMP user using asmcmd command "orapwusr"
orapwusr --modify --password asmsnmp
[oracle@host01 ~]$ asmcmd -p
ASMCMD [+] > lspwusr
Username sysdba sysoper sysasm
SYS TRUE TRUE TRUE
ASMSNMP TRUE FALSE FALSE
ASMCMD [+] >
ASMCMD [+] > orapwusr --modify --password asmsnmp
Enter password: **********
ASMCMD [+] >
=====================================================================================================================
Comments Are Always welcome
=====================================================================================================================