How to Enabling and Diabling VxDMP devices for use with Oracle ASM
Enable DMP support for ASM to make DMP devices visible to ASM as available disks
To make DMP devices visible to ASM
From ASM, make sure ASM_DISKSTRING is set to the value
/dev/raw/*.For Linux:
The value for ASM_DISKSTRING is
/dev/raw/*.SQL> show parameter ASM_DISKSTRING;
NAME TYPE VALUE
-------------------- ----------- ---------------
asm_diskstring string /dev/raw/*For AIX, HP-UX, and Solaris:
The value for ASM_DISKSTRING is
/dev/vx/rdmp/*.SQL> show parameter ASM_DISKSTRING;
NAME TYPE VALUE
-------------------- ----------- ---------------
asm_diskstring string /dev/vx/rdmp/*As root user, enable DMP devices for use with ASM.
# vxdmpraw enable usernamegroupname [devicename ...]For example:
# vxdmpraw enable oracle dba eva4k6k0_1For Linux, perform this step:
The vxdmpraw enable command creates raw devices in the
/dev/raw/*directory, corresponding to the DMP devices. Query the raw devices for devices with major number 201 and minor number between 241 to 255. There are 16 entries, since disks in Linux can have a maximum of 16 partitions. For example:# raw -qa | grep "major 201, minor 241"
/dev/raw/raw54: bound to major 201, minor 241The above output indicates that
/dev/raw/raw54corresponds to the partition/dev/vx/rdmp/eva4k6k0_1s1. Similarly,/dev/raw/raw55corresponds to/dev/vx/rdmp/eva4k6k0_1s2and so forth. Finally,/dev/raw/raw69corresponds to/dev/vx/rdmp/eva4k6k0_1s15.From ASM, confirm that ASM can see these new devices.
SQL> select name,path,header_status from v$asm_disk;Sample output for Linux:
NAME PATH HEADER_STATUS
---------------------------------------------
... ....... ....
/dev/raw/raw53 CANDIDATE
... ....... ....Sample output for AIX, HP-UX, and Solaris:
NAME PATH HEADER_STATUS
---------------------------------------------
... ....... ....
/dev/vx/rdmp/eva4k6k0_1 CANDIDATE
... ....... ....
Remove DMP devices from the listing of ASM disks
To remove DMP devices from the listing of ASM disks, disable DMP support for ASM from the device. You cannot remove DMP support for ASM from a device that is in an ASM disk group.
To remove the DMP device from the listing of ASM disks
If the device is part of any ASM disk group, remove the device from the ASM disk group.
As root user, disable DMP devices for use with ASM.
# vxdmpraw disable disknameFor example:
# vxdmpraw disable eva4k6k0_1
How to Enabling and Diabling VxDMP devices for use with Oracle ASM的更多相关文章
- How to create Oracle ASM devices using device-mapper multipath devices in Red Hat Enterprise Linux 6
How to create Oracle ASM devices using device-mapper multipath devices in Red Hat Enterprise Linux 6 ...
- RAC的QA
RAC: Frequently Asked Questions [ID 220970.1] 修改时间 13-JAN-2011 类型 FAQ 状态 PUBLISHED Appli ...
- [Andriod官方API指南]连接之蓝牙
Bluetooth —— 蓝牙 The Android platform includes support for the Bluetooth network stack, which allows ...
- Oracle 10g AND Oracle 11g手工建库案例--Oracle 11g
Oracle 10g AND Oracle 11g手工建库案例--Oracle 11g 系统环境: 操作系统: RedHat EL6 Oracle: Oracle 10g and Oracle 11 ...
- Attribute-based identification schemes for objects in internet of things
Methods and arrangements for object identification. An identification request is received from diffe ...
- OSCP Learning Notes - Privilege Escalation
Privilege Escalation Download the Basic-pentesting vitualmation from the following website: https:// ...
- 转:ORA-15186: ASMLIB error function = [asm_open], error = [1], 2009-05-24 13:57:38
转:ORA-15186: ASMLIB error function = [asm_open], error = [1], 2009-05-24 13:57:38http://space.itpub. ...
- 1Z0-050
QUESTION 13 View the Exhibit.Examine the following command that is executed for the TRANSPORT table ...
- Oracle Tuning 基础概述01 - Oracle 常见等待事件
对Oracle数据库整体性能的优化,首先要关注的是在有性能问题时数据库排名前几位等待事件是哪些.Oracle等待事件众多,随着版本的升级,数量还在不断增加,可以通过v$event_name查到当前数据 ...
随机推荐
- Kafka详解四:Kafka的设计思想、理念
问题导读 1.Kafka的设计基本思想是什么?2.Kafka消息转运过程中是如何确保消息的可靠性的? 本节主要从整体角度介绍Kafka的设计思想,其中的每个理念都可以深入研究,以后我可能会发专题文章做 ...
- Oralce查询后修改数据,弹窗报提示these query result are not updateable,include the ROWID to get updateable
select t.*, (select a.ANNEXNAME from base_annex a where a.id = t.closeFile) closeFileName, (select a ...
- <转载>Win x86-64 - Download & execute (Generator)
#Title: Obfuscated Shellcode Windows x86/x64 Download And Execute [Use PowerShell] - Generator #leng ...
- C# 反射通过GetCustomAttributes方法,获得自定义特性
http://blog.csdn.net/litao2/article/details/17633107 使用反射访问: 自定义属性的信息和对其进行操作的方法. 一.实例1 1.代码: 如:Syste ...
- Lightoj 1370 素数打表 +二分
1370 - Bi-shoe and Phi-shoe PDF (English) Statistics Time Limit: 2 second(s) Memory Limit: 32 MB ...
- C++两种字符串传参构造函数
第一种: #include"iostream" #include"string" using namespace std; class Motor{ prote ...
- Zabbix的基本安装配置
/////////////////下面开始我的表演///////////////// 1.安装zabbixyum install -y epel-release安装rpm包的LAMP环境: yum i ...
- phalcon查询:单条查询,多条查询,多表查询
单条查询, $order = \OrderMain::findFirst("oid='" . $oid . "'"); 多条查询, $shop = \Order ...
- hdu 5239 Doom(线段树)
Doom Time Limit: 12000/6000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others)Total Sub ...
- android Application Project目录结构
src:存放java源文件 gen: 资源配置文件 Android4.0: 4.0 类库 Android Private Lib: 支持库 Android Dependencies: android ...