博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sys用户无法远程登陆
阅读量:6156 次
发布时间:2019-06-21

本文共 1795 字,大约阅读时间需要 5 分钟。

1.用sys用户远程登陆

[oracle@edbjr2p2 admin]$ sqlplus system/oracle@PROD3 as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 12 18:19:27 2019
Copyright (c) 1982, 2011, Oracle.  All rights reserved.
ERROR:
ORA-01031: insufficient privileges

 

 

2.开始排查原因

1)首先tnsping PROD3(检查监听客户端是否能ping通)

[oracle@edbjr2p2 dbs]$  tnsping PROD3

TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 12-JUN-2019 18:42:00
Copyright (c) 1997, 2011, Oracle.  All rights reserved.
Used parameter files:
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = edbjr2p2.example.com)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = PROD3.us.oracle.com)))
OK (0 msec)
--以上结果证明监听客户端没问题

 

2)参数remote_login_passwordfile参数设置是否正确(应该为exclusive)

SYS@PROD3>show parameter remote_login_passwordfile

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
remote_login_passwordfile            string      EXCLUSIVE

3)检查密码文件是否正确

SYS@PROD3>select * from v$pwfile_users;   --如果为空,证明密码文件有问题

4)去查看密码文件

cd $ORACLE_HOME/dbs

ls

发现密码文件名字为:orapwdPROD3  (正确名字格式应为prapwPROD3)

 

5)重建密码文件

[oracle@edbjr2p2 dbs]$ orapwd file=orapwPROD3 password=oracle entries=30 force=y

6)远程登陆,正常

[oracle@edbjr2p2 dbs]$ sqlplus sys/oracle@PROD3 as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 12 18:51:54 2019
Copyright (c) 1982, 2011, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

7)再次查询v$pwfile_users视图,验证密码文件状态,以下即为正常

SYS@PROD3>select * from v$pwfile_users;

USERNAME                       SYSDB SYSOP SYSAS
------------------------------ ----- ----- -----
SYS                            TRUE  TRUE  FALSE

转载于:https://www.cnblogs.com/gw666/p/11011563.html

你可能感兴趣的文章
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
[译]ECMAScript.next:TC39 2012年9月会议总结
查看>>
【Xcode】编辑与调试
查看>>
用tar和split将文件分包压缩
查看>>
[BTS] Could not find stored procedure 'mp_sap_check_tid'
查看>>
PLSQL DBMS_DDL.ALTER_COMPILE
查看>>
Activity生命周期
查看>>
高仿UC浏览器弹出菜单效果
查看>>
Ubuntu忘记密码,进不了系统的解决方法
查看>>
[原创]白盒测试技术思维导图
查看>>
<<Information Store and Management>> 读书笔记 之八
查看>>
Windows 8 开发之设置合约
查看>>
闲说HeartBeat心跳包和TCP协议的KeepAlive机制
查看>>