- 浏览: 5157131 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
silence19841230:
先拿走看看
SpringBoot2.0开发WebSocket应用完整示例 -
wallimn:
masuweng 写道发下源码下载地址吧!三个相关文件打了个包 ...
SpringBoot2.0开发WebSocket应用完整示例 -
masuweng:
发下源码下载地址吧!
SpringBoot2.0开发WebSocket应用完整示例 -
masuweng:
SpringBoot2.0开发WebSocket应用完整示例 -
wallimn:
水淼火 写道你好,我使用以后,图标不显示,应该怎么引用呢,谢谢 ...
前端框架iviewui使用示例之菜单+多Tab页布局
默认情况下,监控器是不接受从别的节点联入ASM实例的。
因此为ASM创建的服务,状态是"BLOCKED",表示此实例不能接受连接。
Ora10gASM-> lsnrctl status
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-JUN-2008 07:39:03
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Ora10gASM)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Start Date 08-JUN-2008 07:14:45
Uptime 0 days 0 hr. 24 min. 18 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File /oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=2100))(Presentation=FTP)(Session=RAW))
Services Summary...Service "+ASM" has 1 instance(s).
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
Service "+ASM_XPT" has 1 instance(s).
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "benbo" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benboXDB" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benbo_XPT" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
The command completed successfully
BLOCKED:表示此实例不能接受连接
UNKNOWN:表示此实例在listener.ora文件中注册而不是通过动态服务注册,因而不知道其状态
READY:表示此实例可接受连接
可以通过修改listener.ora文件,通过静态注册ASM实例,可使得从别的主机上可进行客户端登陆。
Ora10gASM-> vi /oracle/product/10.2.0/db_1/network/admin/listener.ora
(PROGRAM = extproc)
# listener.ora Network Configuration File: /oracle/product/10.2.0/db_1/network/admin/listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /oracle/product/10.2.0/db_1)
(PROGRAM = extproc)
) (SID_DESC =
(SID_NAME = +ASM)
(ORACLE_HOME = /oracle/product/10.2.0/db_1)
) )
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Ora10gASM)(PORT = 1521))
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
)
)
"product/10.2.0/db_1/network/admin/listener.ora" 24L, 583C written
重新载入监听信息
Ora10gASM-> lsnrctl reload
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-JUN-2008 07:40:40
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Ora10gASM)(PORT=1521)))
The command completed successfully
Ora10gASM-> lsnrctl status
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-JUN-2008 07:40:51
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Ora10gASM)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Start Date 08-JUN-2008 07:14:45
Uptime 0 days 0 hr. 26 min. 6 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File /oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=2100))(Presentation=FTP)(Session=RAW))
Services Summary...
Service "+ASM" has 2 instance(s).
Instance "+ASM", status UNKNOWN, has 1 handler(s) for this service...
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
Service "+ASM_XPT" has 1 instance(s).
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "benbo" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benboXDB" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benbo_XPT" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
The command completed successfully
配置好客户端tnsnames.ora,加入到ASM的连接标识符。
asm =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.111)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = +ASM)
)
)
C:>sqlplus sys/oracle@asm as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on 星期日 6月 8 10:38:14 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL>
转自:http://benbo.itpub.net/post/26034/463936
因此为ASM创建的服务,状态是"BLOCKED",表示此实例不能接受连接。
Ora10gASM-> lsnrctl status
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-JUN-2008 07:39:03
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Ora10gASM)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Start Date 08-JUN-2008 07:14:45
Uptime 0 days 0 hr. 24 min. 18 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File /oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=2100))(Presentation=FTP)(Session=RAW))
Services Summary...Service "+ASM" has 1 instance(s).
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
Service "+ASM_XPT" has 1 instance(s).
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "benbo" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benboXDB" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benbo_XPT" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
The command completed successfully
BLOCKED:表示此实例不能接受连接
UNKNOWN:表示此实例在listener.ora文件中注册而不是通过动态服务注册,因而不知道其状态
READY:表示此实例可接受连接
可以通过修改listener.ora文件,通过静态注册ASM实例,可使得从别的主机上可进行客户端登陆。
Ora10gASM-> vi /oracle/product/10.2.0/db_1/network/admin/listener.ora
(PROGRAM = extproc)
# listener.ora Network Configuration File: /oracle/product/10.2.0/db_1/network/admin/listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /oracle/product/10.2.0/db_1)
(PROGRAM = extproc)
) (SID_DESC =
(SID_NAME = +ASM)
(ORACLE_HOME = /oracle/product/10.2.0/db_1)
) )
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Ora10gASM)(PORT = 1521))
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
)
)
"product/10.2.0/db_1/network/admin/listener.ora" 24L, 583C written
重新载入监听信息
Ora10gASM-> lsnrctl reload
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-JUN-2008 07:40:40
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Ora10gASM)(PORT=1521)))
The command completed successfully
Ora10gASM-> lsnrctl status
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-JUN-2008 07:40:51
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=Ora10gASM)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Start Date 08-JUN-2008 07:14:45
Uptime 0 days 0 hr. 26 min. 6 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File /oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=Ora10gASM)(PORT=2100))(Presentation=FTP)(Session=RAW))
Services Summary...
Service "+ASM" has 2 instance(s).
Instance "+ASM", status UNKNOWN, has 1 handler(s) for this service...
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
Service "+ASM_XPT" has 1 instance(s).
Instance "+ASM", status BLOCKED, has 1 handler(s) for this service...
Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "benbo" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benboXDB" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
Service "benbo_XPT" has 1 instance(s).
Instance "benbo", status READY, has 1 handler(s) for this service...
The command completed successfully
配置好客户端tnsnames.ora,加入到ASM的连接标识符。
asm =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.111)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = +ASM)
)
)
C:>sqlplus sys/oracle@asm as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on 星期日 6月 8 10:38:14 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL>
转自:http://benbo.itpub.net/post/26034/463936
发表评论
-
Oracle连接故障的排除
2024-09-09 22:33 379Oracle版本为11G,操作系统为Windows Ser ... -
Oracle数据库相关系统突然提示“SQLException:违反协议”
2024-02-19 15:50 1072SQLException:违反协议这个异常可能由很多的 ... -
CentOS在Docker中安装Oracle
2024-02-06 12:13 11411.拉取Oracle镜像,并检 ... -
Windows Server安装oracle数据库一直停在82%
2023-02-04 12:01 573网上有个说法:服务器超过一定数量的CPU后,将不能正常安装 ... -
ORA-04030错误处理
2023-02-04 11:52 2604【错误描述】 错误信息如下: ORA-04030:在尝 ... -
ORA-04030错误处理
2023-02-04 11:45 403【错误描述】 错误信息如下: ORA-04030:在尝 ... -
Linux安装MySQL数据库
2019-06-10 22:27 17711.进入安装包所在目录,解压: tar zxvf mysql- ... -
确定MySQL在Linux系统中配置文件的位置
2019-04-14 19:30 27571.通过which mysql命令来查看mysql的安装位置。 ... -
mysql set names 命令和 mysql 字符编码问题
2019-04-12 00:34 1134转自:https://www.cnblogs.com/digd ... -
MYSQL中取当前周/月/季/年的第一天与最后一天
2018-11-17 23:16 2197转自:https://blog.csdn.net/ ... -
Oracle删除大量数据的实践
2016-11-07 18:03 5807一、引言 从来没有 ... -
Oracle 数据库简明教程 V0.1
2016-03-23 21:01 2044供初学者入门学习使用,以开发者常见、常用的知识为主,基本上 ... -
Oracle拆分字符串函数
2016-03-23 10:58 3350create or replace type string ... -
Oracle数据库远程连接无响应
2016-03-21 10:20 4292故障现象: 服务器本机使用sqlplus / as s ... -
Oracle PGA详解
2015-10-21 15:34 11447转自:http://yanguz123.iteye.com/b ... -
Oracle12C导入dmp数据
2015-10-08 23:43 20519Oracle12C,发生了较大的变化。以前熟悉的东西变得陌 ... -
SQLLDR数据导入小结
2015-07-25 22:06 75091.创建数据表 CREATE TABLE ... -
Window7安装Oracle10
2015-03-06 12:14 1598每次安装都要百度,转到自己的博客上,找起来方便,还能增加访 ... -
Oracle SQL Developer 连接 Mysql 数据库
2015-02-25 19:36 3642下载JDBC包,解压缩这里只要mysql-connector- ... -
Mysql数据备份与恢复
2015-02-25 19:15 1339备份/恢复策略 1. 要定期做 mysql备份,并考虑系统可以 ...
相关推荐
在报警亮灯程序中,ASM可能用于编写直接控制GPIO状态的低级代码,以实现快速、精确的灯光明暗控制和闪烁效果。 3. **C语言**:C语言是一种中级语言,它提供了比汇编更高级别的抽象,但仍然能保持良好的性能。在这个...
这篇博客"ASM函数监听实现(二)之打印注入函数的参数值"深入探讨了如何利用ASM库来监控并记录函数调用时的参数值,这对于调试、日志记录以及性能分析等场景非常有用。 首先,我们来看`asmAopClassAdapter.java`。...
在本文中,我们将深入探讨"asm330lhh-STdC嵌入式程序示例",这是一个基于ASM330LHH传感器的嵌入式系统应用实例。ASM330LHH是一款高性能的三轴加速度计和三轴陀螺仪,常用于运动检测、导航系统以及物联网(IoT)设备。...
汇编写的生日快乐歌,输出端口为p0.7,文件格式为asm
标题中的“英文打字 ASM 源程序”指的是使用汇编语言(Assembly)编写的一个程序,该程序的主要功能是用于英文打字练习。ASM 是汇编语言的简称,它是一种低级编程语言,直接对应于计算机硬件的指令集,允许程序员对...
asm-1.3.3.jar, asm-1.3.4.jar, asm-1.3.5.jar, asm-1.4.1.jar, asm-1.4.2.jar, asm-1.4.3.jar, asm-1.4.jar, asm-1.5.1.jar, asm-1.5.2.jar, asm-1.5.3.jar, asm-2.0.jar, asm-2.1.jar, asm-2.2.1-sources.jar, asm...
2. **ASM 程序设计**:在ASM源代码中,会定义一系列的中断服务例程来处理红外接收头检测到的信号。这些例程需要快速响应并精确地计时,以解析出脉冲序列的长度和间隔,从而解码出遥控器的指令。 3. **信号解码**:...
本例程主要针对ASM330陀螺仪进行程序设计,以实现其功能的最大化利用。ASM330是一款高性能的三轴数字陀螺仪,适用于各种需要精确角速度测量的应用,如无人机、机器人、虚拟现实设备等。 首先,我们需要了解ASM330的...
在这个特定的程序中,ASM和Haar人脸检测技术被集成到一个MFC应用程序中,使得用户可以通过图形界面进行交互操作。程序能够自动标注人脸的眼睛、鼻子和嘴巴的位置,这有助于训练机器学习模型或者进行人脸分析研究。...
- **认证器状态码**:`UAF_CMD_STATUS_CMD_NOT_SUPPORTED` → **ASM状态码**:如果ASM能正确处理该错误,则返回`UAF_ASM_STATUS_OK`,否则返回`UAF_ASM_STATUS_ERROR` 通过这种方式,ASM能够有效地将认证器的状态码...
2. Flash程序:这可能是固件或者配置文件,用于初始化和管理ASM1061的内部存储器。这些程序可能包含设备的初始化代码、故障恢复逻辑和性能优化设置。 3. 可能还会有用户手册、数据手册或者开发者指南,这些文档提供...
ASM 1351 是一款由ASMedia( ASM 微电子)公司开发的集成电路,主要应用于数据传输和接口控制领域。这个压缩包“ASM 1351.zip”包含了与ASM 1351相关的三个关键文件:一个固件升级工具、数据表以及设计套件。 1. **...
5. **示例代码分析**:压缩包中的"ASM330LHH-main"可能包含一个示例程序,演示如何初始化ASM330LHH、读取数据并可能地在串口上打印或处理这些数据。通过阅读和理解这个示例,开发者可以快速上手自己的项目。 6. **...
启动时,ASM会检测和初始化配置的磁盘,而关闭则会释放资源并停用服务。 ```sql $ sqlplus / as sysasm SQL> startup SQL> shutdown immediate ``` - **管理ASM磁盘** ASM允许动态添加和删除磁盘,以适应...
c32asm_反汇编程序,供学习用,感谢吾爱破解,提供谢谢
c32asm 代码编辑程序更改标题图标c32asm 代码编辑程序更改标题图标c32asm 代码编辑程序更改标题图标c32asm 代码编辑程序更改标题图标c32asm 代码编辑程序更改标题图标c32asm 代码编辑程序更改标题图标c32asm 代码...
ASM 实例和监听日志文件及 Database 日志文件管理 ASM 实例和监听日志文件是 Oracle 数据库管理系统中两个重要的日志文件。ASM 实例日志文件记录了 Automatic Storage Management(ASM)实例的所有操作,而监听日志...
【标题解析】:“asm2com asm转com程序”指的是一个特定的软件工具,它的主要功能是将汇编语言(Assembly)编写的源代码转换成COM(Command Output Module)格式的可执行文件。COM文件是早期DOS操作系统下常见的...
在标题提到的"C-include-ASM.zip_asm中include_asm_c语言中嵌套asm",我们主要讨论的是如何在C程序中使用汇编代码,并且可能涉及到如何在汇编代码中包含其他汇编模块。 首先,让我们了解一下C语言嵌套汇编的基本...