数据库
首页 > 数据库> > [RAC] 1. 安装Oracle RAC时,不能验证ASMSNMP密码问题的解决(ORA-01031或ORA-01017)

[RAC] 1. 安装Oracle RAC时,不能验证ASMSNMP密码问题的解决(ORA-01031或ORA-01017)

作者:互联网

 

 

1."ORA-01031: insufficient privileges"

[grid@node1 bin]$ orapwd file=/u01/app/11.2.0/grid/dbs/orapw+ASM password=oracle_4U  --这个文件一般都是有的

[grid@node1 dbs]$ scp orapw+ASM Node2:/u01/app/11.2.0/grid/dbs/

[grid@node1 dbs]$ scp orapw+ASM Node3:/u01/app/11.2.0/grid/dbs/

Login in to Oracle database as

export ORACLE_SID=+ASM1
export ORACLE_HOME=/u01/app/11.2.0/grid

[grid@node1 bin]$ sqlplus / as sysasm

SQL>create user asmsnmp identified by oracle_4U;

SQL> grant sysdba to asmsnmp;

 

2.ora 01017 invalid username/password logon denied

[grid@node1 bin]$ sqlplus / as sysasm

SQL>alter user asmsnmp identified by oracle_4U;

 

 

 

 

 

标签:RAC,01031,11.2,grid,node1,dbs,u01,app,ORA
来源: https://www.cnblogs.com/vmsysjack/p/12186938.html