IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> 重启Oracle监听器会中断已有连接吗 -> 正文阅读

[大数据]重启Oracle监听器会中断已有连接吗

重启Oracle监听器会中断已有连接吗

问题背景

Oracle RAC架构中,重启两个数据库节点的监听器,是否会影响已经建立的客户端连接?🐒🐒

实验测试

现有两个数据库节点DB01、DB02,对应的SCAN-vipx.x.x.34,以及一个装有Oracle client的应用服务器AP01。假设数据库名为FLEXCOM,用户账号及密码为flex/xlef_101

建立一个从应用服务器到数据库的连接。登录AP01执行:

su - oracle
sqlplus flex/xlef_101@x.x.x.34:1521/FLEXCOM

登录成功。

依次停止两个数据库节点的监听器:

ssh $DB01_IP
su - grid
lsnrctl stop

ssh $DB02_IP
su - grid
lsnrctl stop

测试已有的连接是否断开。回到AP01起先建立的会话,尝试执行SQL语句:

show parameter session;
select grantee,privilege from dba_sys_privs where grantee='XXX';

SQL语句执行成功,可见停止监听器对已经建立的会话没有影响。

测试是否可以建立新的连接:

su - oracle
sqlplus flex/xlef_101@x.x.x.34:1521/FLEXCOM
ERROR: ORA-12516: TNS:listener could not find available handler with matching protocol stack
Enter user-name:
Enter password:
ERROR: ORA-12162: TNS:net service name is incorrectly specified

可见,停止监听器后,无法再建立新的客户端连接。

启动两个数据库节点的监听器:

ssh $DB01_IP
su - grid
lsnrctl start

ssh $DB02_IP
su - grid
lsnrctl start

检查监听器状态:

lsnrctl status

综上可知,当客户端成功连接到Oracle数据库后,重启监听器并不会中断已有的连接;只是无法建立新的连接。因此,在数据库升级、重启等过程中,需要先停掉监听器,然后杀掉已有的会话连接。

报错分析

在停止监听器后,尝试连接数据库时,我们收到了两个报错信息:ORA-12516ORA-12162

ORA-12516: TNS:listener could not find available handler with matching protocol stack
Cause: None of the known and available service handlers for the given SERVICE_NAME support the client’s protocol stack: transport, session, and presentation protocols.
Action: Check to make sure that the service handlers (e.g. dispatchers) for the given SERVICE_NAME are registered with the listener, are accepting connections, and that they are properly configured to support the desired protocols.

ORA-12516是由于我们停止了数据库的监听器造成的。

ORA-12162: TNS:net service name is incorrectly specified
Cause: The connect descriptor corresponding to the net service name in TNSNAMES.ORA or in the directory server (Oracle Internet Directory) is incorrectly specified.
Action: If using local naming make sure there are no syntax errors in the corresponding connect descriptor in the TNSNAMES.ORA file. If using directory naming check the information provided through the administration used for directory naming. If using ORACLE_SID, please check if ORACLE_SID is// set.

ORA-12612是因为我们没有在Oracle client服务器配置tnsnames.ora导致的。

References
【1】Database error maessages

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2022-04-22 18:43:14  更:2022-04-22 18:47:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:52:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码