Could not validate ASMSNMP password due to following error – “ORA-01031: insufficient privileges”
SOLUTION:
- Go to Grid Home
/u01/app/11.2.0.3/grid/bin
- Connect to ASM instance and check whether the user ASMSNMP exists.
SQL*Plus: Release 11.2.0.3.0 Production on Sat May 24 08:09:49 2014
Copyright (c) 1982, 2011, Oracle. All rights reserved.
SQL> conn / as sysasm
Connected.
SQL> grant sysdba to asmsnmp;
grant sysdba to asmsnmp
*
ERROR at line 1:
ORA-01918: user ‘ASMSNMP’ does not exist
- Create the ASMSNMP user and grant the SYSDBA privilege to it.
SQL> create user asmsnmp identified by oracle;
User created.
SQL> grant sysdba to asmsnmp;
Grant succeeded.
SQL>