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查到当前数据 ...
随机推荐
- javascript的宿主环境
关于javascript语言,最有意思的是它必须要在一个宿主环境中运行,其中受欢迎的宿主环境当然就是浏览器了,但这并不是我们唯一的选择, javascript完全可以运行在服务器端,桌面以及富媒体环境 ...
- c# 判断一个ip通不通 能不能ping通
方法一: 已经证实能用的. using System; using System.Collections.Generic; using System.ComponentModel; using Sys ...
- 快速的熟悉一个angular的项目从run看起
config之类的都会注入到controller或者run里边
- MVC 成功创建了数据库,但是数据库对象创建失败[此引用关系将导致不允许的周期性引用]
model 类的属性写错了 错误写法: public province { public int provinceId; public string Name; } public City ...
- C++(十四) — 常用快捷键总结
快捷键设置方法:https://blog.csdn.net/wrzfeijianshen/article/details/53230789 https://blog.csdn.net/wrzfei ...
- 解决: PyInstaller打包后exe文件打开时出现failed to execute script
def resource_path(self, relative): if hasattr(sys, "_MEIPASS"): return os.path.join(sys._M ...
- 删除OSX中第三方的「偏好设置」程序(.prefPane)
打开Finder,按Command+Shift+G,输入 /Library/PreferencePanes ~/Library/PreferencePanes 前一个是全局的配置项目录,第二个是当前用 ...
- ural 2014 Zhenya moves from parents
2014. Zhenya moves from parents Time limit: 1.0 secondMemory limit: 64 MB Zhenya moved from his pare ...
- 交换排序—冒泡排序(Bubble Sort)算法原理以及Java实现
基本思想: 在要排序的一组数中,对当前还未排好序的范围内的全部数,自上而下对相邻的两个数依次进行比较和调整,让较大的数往下沉,较小的往上冒.即:每当两相邻的数比较后发现它们的排序与排序要求相反时,就将 ...
- JavaWeb学习总结(一)JavaWeb入门与Tomcat
一.常见软件系统体系结构B/S.C/S 1. C/S C/S结构即客户端/服务器(Client/Server),例如QQ: 需要编写服务器端程序,以及客户端程序,例如我们安装的就是QQ的客户端程序: ...