欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

探索ORACLE之ASM概念(完整版)

程序员文章站 2022-07-20 14:28:30
一、     asm(自动存储管理)的来由: asm是oracle 10g r2中为了简化oracle数据库的管理而推出来的一项新...

一、     asm(自动存储管理)的来由:

asm是oracle 10g r2中为了简化oracle数据库的管理而推出来的一项新功能,这是oracle自己提供的卷管理器,主要用于替代操作系统所提供的lvm,它不仅支持单实例,同时对rac的支持也是非常好。asm可以自动管理磁盘组并提供有效的数据冗余功能。使用asm(自动存储管理)后,数据库管理员不再需要对oracle中成千上万的数据文件进行管理和分类,从而简化了dba的工作量,可以使得工作效率大大提高。

二、     什么是asm

asm它提供了以平台无关的文件系统、逻辑卷管理以及软raid服务。asm可以支持条带化和磁盘镜像,从而实现了在数据库被加载的情况下添加或移除磁盘以及自动平衡i/o以删除“热点”。它还支持直接和异步的i/o并使用oracle9i中引入的oracle数据管理器api(简化的i/o系统调用接口)。

asm是做为单独的oracle实例实施和部署,并且它只需要有参数文件,不需要其它的任何物理文件,就可以启动asm实例,只有它在运行的时候,才能被其它数据访问。在linux平台上,只有运行了ocssd服务(oracle安装程序默认安装)了才能和访问asm。

三、     使用asm的好处:

1、 将i/o平均分部到所有可用磁盘驱动器上以防止产生热点,并且最大化性能。

2、 配置更简单,并且最大化推动数据库合并的存储资源利用。

3、 内在的支持大文件

4、 在增量增加或删除存储容量后执行自动联系重分配

5、 维护数据的冗余副本以提高可用性。

6、 支持10g,11g的数据存储及rac的共享存储管理

7、 支持第三方的多路径软件

8、 使用omf方式来管理文件

四、     asm冗余:

asm使用独特的镜像算法:不镜像磁盘,而是镜像盘区。作为结果,为了在产生故障时提供连续的保护,只需要磁盘组中的空间容量,而不需要预备一个热备(hot spare)磁盘。不建议用户创建不同尺寸的故障组,因为这将会导致在分配辅助盘区时产生问题。asm将文件的主盘区分配给磁盘组中的一个磁盘时,它会将该盘区的镜像副本分配给磁盘组中的另一个磁盘。给定磁盘上的主盘区将在磁盘组中的某个伙伴磁盘上具有各自的镜像盘区。asm确保主盘区和其镜像副本不会驻留在相同的故障组中。磁盘组的冗余可以有如下的形式:双向镜像文件(至少需要两个故障组)的普通冗余(默认冗余)和使用三向镜像(至少需要3个故障组)提供较高保护程度的高冗余。一旦创建磁盘组,就不可以改变它的冗余级别。为了改变磁盘组的冗余,必须创建具有适当冗余的另一个磁盘组,然后必须使用rman还原或dbms_file_transfer将数据文件移动到这个新创建的磁盘组。

三种不同的冗余方式如下:

1、 外部冗余(external redundancy):表示oracle不帮你管理镜像,功能由外部存储系统实现,比如通过raid技术;有效磁盘空间是所有磁盘设备空间的大小之和。

2、 默认冗余(normal redundancy):表示oracle提供2份镜像来保护数据,有效磁盘空间是所有磁盘设备大小之和的1/2 (使用最多)

3、 高度冗余(high redundancy):表示oracle提供3份镜像来保护数据,以提高性能和数据的安全,最少需要三块磁盘(三个failure group);有效磁盘空间是所有磁盘设备大小之和的1/3,虽然冗余级别高了,但是硬件的代价也最高。

五、     asm进程

asm实例除了传统的dbwr,lgwr,ckpt,smon,pmon等进程还包含如下四个新后台进程:

rbal:负责协调磁盘组的重新平衡活动(负责磁盘组均衡)

arb0-arbn:在同一时刻可以存在许多此类进程,它们分别名为arb0、arb1,以此类推,执行实际的重新平衡分配单元移动进程。

gmon:用于asm磁盘组监控

o0nn 01-10:这组进程建立到asm实例的连接,某些长时间操作比如创建数据文件,rdbms会通过这些进程向asm发送信息

asmb与asm 实例的前台进程连接,周期性的检查两个instance的健康状况。每个数据库实例同时只能与一个asm实例连接,因此数据库只会有一个asmb后台进程。如一个节点上有多个数据库实例,它们只能共享一个asm实例。

rbal用来进行全局调用,以打开某个磁盘组内的磁盘。asmb进程与该节点的css守护进程进行通信,并接收来自asm实例的文件区间映射信息。asmb还负责为asm实例提供i/o统计数据

css集群同步服务。要使用asm,必须确保已经运行了css集群同步服务,css负责asm实例和数据库实例之间的同步。

注意:asm实例必须要先于数据库实例启动,和数据库实例同步运行,迟于数据库实例关闭。asm 实例和数据库实例的关系可以是1:1,也可以是1:n。如果是1:n,最好为asm 安装单独的asm_home。

六、   asm支持datafile,logfiles,control files,archivelogs,rman backup sets等自动的数据库文件管理

七、     asm实例和数据库实例对应关系

探索ORACLE之ASM概念(完整版)

八、     cluster asm 架构

 探索ORACLE之ASM概念(完整版)

如需了解更详细信息请参见oracle数据库管理员指南(oracle首次放出)

http://docs.oracle.com/cd/b28359_01/server.111/b31107/toc.htm

好了,现在开始谈谈有关于asm安装的相关内容,asm的安装必须建立在操作系统和数据库软件已经安装完成的及实例未创建之前来进行安装,之后再进行选择asm方式建库。asm不仅可以应用于单实例的数据库,同时更适用于rac集群方式的数据库,并且asm只被oracle所认,同时也是oracle最佳的存储解决方案,可以有效的替代raid技术和卷管理技术,比裸设备的管理更加方便;所以现在大部分企业都在迅速的向asm技术迁移。

在上面我们已经探讨过了asm的三种模式,及其的一些应用,在这里我们就不对其进行过多的累述。正式进入这篇的主题,如何安装asm软件,安装asm需要具备哪些条件。

asm安装步骤:

一、基础环境准备

1、  检查操作系统和数据库软件是否安装完成:

installation in progress (mon apr 09 19:12:44 cst 2012)

...............................................................  18% done.

...............................................................  36% done.

...............................................................  54% done.

...............................................................  73% done.

............                                                     76% done.

install successful

linking in progress (mon apr 09 19:19:34 cst 2012)

link successful

setup in progress (mon apr 09 19:23:13 cst 2012)

..............                                                  100% done.

setup successful

end of install phases.(mon apr 09 19:23:26 cst 2012)

warning:a new inventory has been created in this session. however, it has not yet been registered as the central inventory of this system.

to register the new inventory please run the script '/oracle/orainventory/orainstroot.sh' with root privileges.

if you do not register the inventory, you may not be able to update or patch the products you installed.

the following configuration scripts

/oracle/orahome/10.2.0/db_1/root.sh

need to be executed as root for configuring the system. if you skip the execution of the configuration tools, the configuration will not be complete and the product wont function properly. in order to get the product to function properly, you will be required to execute the scripts and the configuration tools after exiting the oui.

the installation of oracle database 10g was successful.

从如上信息我们可以看到数据库已经安装完成,操作系统肯定也是没有问题的。

2、  检查数据库和操作系统版本:

[oracle@ jb51.net db_1]$ lsb_release -a

lsb version:    :core-3.1-ia32:core-3.1-noarch:graphics-3.1-ia32:graphics-3.1-noarch

distributor id: enterpriseenterpriseserver

description:    enterprise linux enterprise linux server release 5.4 (carthage)

release:        5.4

codename:       carthage

[oracle@ jb51.net db_1]$

[oracle@ jb51.net db_1]$ uname -a

linux wwl 2.6.18-164.el5 #1 smp thu sep 3 02:16:47 edt 2009 i686 i686 i386 gnu/linux

操作系统版本为5.4 x86,内核版本为2.6.18-164.el5,后面下载asm包必须要对应

[oracle@ jb51.net db_1]$ sqlplus / as sysdba

sql*plus: release 10.2.0.1.0 - production on mon apr 9 19:41:54 2012

copyright (c) 1982, 2005, oracle.  all rights reserved.

connected to an idle instance.

sql>

数据库版本是10.2.0.1.

3、  我们已经知道了这些信息后,我们就可以有针对性的下载asm了:

asm下载地址,版本不一样,用的asm包也不一样:

http://www.oracle.com/technetwork/server-storage/linux/downloads/rhel5-084877.html

找到intel ia32 (x86) architecture系列中的这个包下载下来:

drivers for kernel 2.6.18-164.el5

·         oracleasm-2.6.18-164.el5-2.0.5-1.el5.i686.rpm

·         以及如下两个包下载下来就可以了:

library and tools

·         oracleasm-support-2.1.7-1.el5.i386.rpm

·         oracleasmlib-2.0.4-1.el5.i386.rpm

·          

4、  下载完了之后开始安装asm的rpm包,用root用户安装,注意安装顺序,如下:

[root@wwl asmpark]# ls

oracleasm-2.6.18-164.el5-2.0.5-1.el5.i686.rpm

oracleasmlib-2.0.4-1.el5.i386.rpm

oracleasm-support-2.1.7-1.el5.i386.rpm

[root@wwl asmpark]# rpm -ivh oracleasm-support-2.1.7-1.el5.i386.rpm

warning: oracleasm-support-2.1.7-1.el5.i386.rpm: header v3 dsa signature: nokey, key id 1e5e0159

preparing...                ########################################### [100%]

   1:oracleasm-support      ########################################### [100%]

[root@wwl asmpark]# rpm -ivh oracleasm-2.6.18-164.el5-2.0.5-1.el5.i686.rpm

warning: oracleasm-2.6.18-164.el5-2.0.5-1.el5.i686.rpm: header v3 dsa signature: nokey, key id 1e5e0159

preparing...                ########################################### [100%]

   1:oracleasm-2.6.18-164.el########################################### [100%]

[root@wwl asmpark]# rpm -ivh oracleasmlib-2.0.4-1.el5.i386.rpm

warning: oracleasmlib-2.0.4-1.el5.i386.rpm: header v3 dsa signature: nokey, key id 1e5e0159

preparing...                ########################################### [100%]

   1:oracleasmlib           ########################################### [100%]

[root@wwl asmpark]#

5、  好了,现在asm相关包已经安装完成,现在来开始创建用于asm的磁盘分区(不是一定要做,裸盘也可以做asm)

[root@wwl asmpark]# fdisk -l

disk /dev/sda: 16.1 gb, 16106127360 bytes

255 heads, 63 sectors/track, 1958 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

   device boot      start         end      blocks   id  system

/dev/sda1   *           1          13      104391   83  linux

/dev/sda2              14        1958    15623212+  8e  linux lvm

disk /dev/sdb: 10.7 gb, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

disk /dev/sdb doesn't contain a valid partition table

disk /dev/sdc: 10.7 gb, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

disk /dev/sdc doesn't contain a valid partition table

[root@wwl asmpark]#

我们从上图可以看出系统中有两块空闲的磁盘没有使用,我们首先需要对磁盘创建分区,但不能格式化,命令如下:

fdisk /dev/sdb /n/p/1/回车/回车/w

fdisk /dev/sdc /n/p/1/回车/回车/w

如下就已经创建好了分区:

[root@wwl asmpark]# fdisk -l

disk /dev/sda: 16.1 gb, 16106127360 bytes

255 heads, 63 sectors/track, 1958 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

   device boot      start         end      blocks   id  system

/dev/sda1   *           1          13      104391   83  linux

/dev/sda2              14        1958    15623212+  8e  linux lvm

disk /dev/sdb: 10.7 gb, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

   device boot      start         end      blocks   id  system

/dev/sdb1               1        1305    10482381   83  linux

disk /dev/sdc: 10.7 gb, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders

units = cylinders of 16065 * 512 = 8225280 bytes

   device boot      start         end      blocks   id  system

/dev/sdc1               1        1305    10482381   83  linux

二、asm配置

以上已将准备环境准备好,下一步骤就是开始配置了,这里面配置包括如下几个步骤

开始创建asm实例,创建asm实例的方式有两种,一种是通过命令行,还有一种是通过图形界面,执行dbca后有一步是创建asm实例,图形界面实在太简单了,跟创建db是一样的,在这里就不累赘了。

在使用asm之前首先要配置asmlib驱动程序,如下:

我们首先可以看下asm的配置工具 oracleasm的语法和功能,如下:

 [root@wwl asmpark]# /etc/init.d/oracleasm --help

usage: /etc/init.d/oracleasm {start|stop|restart|enable|disable|configure|createdisk|deletedisk|querydisk|listdisks|scandisks|status}

[root@wwl asmpark]#

1、开始配置asmlib:

 [root@wwl asmpark]# /etc/init.d/oracleasm configure

configuring the oracle asm library driver.

this will configure the on-boot properties of the oracle asm library

driver.  the following questions will determine whether the driver is

loaded on boot and what permissions it will have.  the current values

will be shown in brackets ('[]').  hitting <enter> without typing an

answer will keep that current value.  ctrl-c will abort.

default user to own the driver interface []: oracle

default group to own the driver interface []: dba

start oracle asm library driver on boot (y/n) [n]: y

scan for oracle asm disks on boot (y/n) [y]: y

writing oracle asm library driver configuration: done

initializing the oracle asmlib driver: [  ok  ]

scanning the system for oracle asmlib disks: [  ok  ]

2、启用asmlib驱动程序:

[root@wwl asmpark]# /etc/init.d/oracleasm enable

writing oracle asm library driver configuration: done

initializing the oracle asmlib driver: [  ok  ]

scanning the system for oracle asmlib disks: [  ok  ]

3、通过以root用户身份运行以下命令来标记由 asmlib 使用的磁盘:

[root@wwl asmpark]# /etc/init.d/oracleasm createdisk vol1 /dev/sdb1

marking disk "vol1" as an asm disk: [  ok  ]

[root@wwl asmpark]# /etc/init.d/oracleasm createdisk vol2 /dev/sdc1

marking disk "vol2" as an asm disk: [  ok  ]

[root@wwl asmpark]#

4、通过如下命令查看asm所能使用的磁盘及状态,一切显示都是正常的。

[root@wwl asmpark]# oracleasm querydisk vol1

disk "vol1" is a valid asm disk

[root@wwl asmpark]# oracleasm querydisk /dev/sdb1

device "/dev/sdb1" is marked an asm disk with the label "vol1"

[root@wwl asmpark]# oracleasm querydisk vol2

disk "vol2" is a valid asm disk

[root@wwl ~]# oracleasm querydisk /dev/sdc1

device "/dev/sdc1" is marked an asm disk with the label "vol2"

[root@wwl asmpark]# oracleasm listdisks

vol1

vol2

[root@wwl asmpark]# ls -l /dev/oracleasm/disks/*

brw-rw---- 1 oracle dba 8, 17 apr 10 00:25 /dev/oracleasm/disks/vol1

brw-rw---- 1 oracle dba 8, 33 apr 10 00:25 /dev/oracleasm/disks/vol2

[root@wwl asmpark]# oracleasm status

checking if asm is loaded: yes

checking if /dev/oracleasm is mounted: yes

5、如上asmlib已经安装完成,并且也将磁盘标记为可用,接下来要做的就是创建asm实例,并构建一个使用asm磁盘来存储数据的数据库,可以使用dbca,当然也可以使用手工的方式来创,在这里,我就采用手工方式创建asm实例,步骤如下:

6、创建初始化参数文件,信息如下:

[oracle@ jb51.net dbs]$ vi $oracle_home/dbs/init$oracle_sid.ora

asm_diskstring='wwl:vol*'

background_dump_dest='/oracle/admin/+asm/bdump'

core_dump_dest='/oracle/admin/+asm/cdump'

user_dump_dest='/oracle/admin/+asm/udump'

instance_type='asm'

large_pool_size=12m

remote_login_passwordfile='shared'

7、增加实例信息到/etc/oratab

$ vi /etc/oratab

+asm:/u01/app/oracle/product/10.2.0/db_1:y

8、创建asm实例密码文件:

[oracle@ jb51.net dbs]$ $oracle_home/bin/orapwd file=$oracle_home/dbs/orapw$oracle_sid password='oracle' force=y;

[oracle@ jb51.net dbs]$

9、创建asm实例相应的目录:

[oracle@ jb51.net dbs]$  mkdir -p $oracle_base/admin/$oracle_sid/bdump

[oracle@ jb51.net dbs]$ mkdir -p $oracle_base/admin/$oracle_sid/cdump

[oracle@ jb51.net dbs]$ mkdir -p $oracle_base/admin/$oracle_sid/udump

[oracle@ jb51.net dbs]$

10、开启css服务

$ su - root

[root@wwl ~]# /oracle/orahome/10.2.0/db_1/bin/localconfig add

/etc/oracle does not exist. creating it now.

successfully accumulated necessary ocr keys.

creating ocr keys for user 'root', privgrp 'root'..

operation successful.

configuration for local css has been initialized

adding to inittab

startup will be queued to init within 90 seconds.

checking the status of new oracle init process...

expecting the crs daemons to be up within 600 seconds.

css is active on these nodes.

        wwl

css is active on all nodes.

oracle css service is installed and running under init(1m)

11、启动asm实例,并创建asm磁盘组:

[oracle@ jb51.net dbs]$ sqlplus / as sysdba

sql*plus: release 10.2.0.1.0 - production on tue apr 10 01:23:44 2012

copyright (c) 1982, 2005, oracle.  all rights reserved.

connected to:

oracle database 10g enterprise edition release 10.2.0.1.0 - production

with the partitioning, olap and data mining options

sql> startup nomount;

asm instance started

total system global area   83886080 bytes

fixed size                  1217836 bytes

variable size              57502420 bytes

asm cache                  25165824 bytes

sql> select instance_name,status from v$instance;

instance_name    status

---------------- ------------

+asm             started

sql>

现在实例我已经将其启动到nomount状态,下一步开始创建asm磁盘组。

12、创建asm组并将其启动到mount状态,

sql> create diskgroup asmgroup1 normal redundancy disk '/dev/oracleasm/disks/vol1','/dev/oracleasm/disks/vol2';

diskgroup created.

好了,磁盘组已经创建好了,并且也已经挂载了

sql> select name,state from v$asm_diskgroup;

name                           state

------------------------------ -----------

asmgroup1                      mounted

sql>

可以看到如下,参数文件也随着更新了:

sql> show parameter asm_diskgroups;

name                                 type        value

------------------------------------ ----------- ------------------------------

asm_diskgroups                       string      asmgroup1

13、检查asm进程是否都正常启动了,我们之前提到的几个进程名称,这里面都有了,说明现在asm已经是正常运行状态。

[oracle@ jb51.net ~]$ ps -ef | grep asm

oracle    3887     1  0 02:58 ?        00:00:00 asm_pmon_+asm

oracle    3889     1  0 02:58 ?        00:00:00 asm_psp0_+asm

oracle    3891     1  0 02:58 ?        00:00:00 asm_mman_+asm

oracle    3893     1  0 02:58 ?        00:00:00 asm_dbw0_+asm

oracle    3895     1  0 02:58 ?        00:00:00 asm_lgwr_+asm

oracle    3897     1  0 02:58 ?        00:00:00 asm_ckpt_+asm

oracle    3899     1  0 02:58 ?        00:00:00 asm_smon_+asm

oracle    3901     1  0 02:58 ?        00:00:00 asm_rbal_+asm

oracle    3903     1  0 02:58 ?        00:00:00 asm_gmon_+asm

探索ORACLE之ASM概念(完整版)

一、通过asm方式建立单实例库

 探索ORACLE之ASM概念(完整版)

探索ORACLE之ASM概念(完整版)

探索ORACLE之ASM概念(完整版)

二、检查通过asm建库后,文件存储的状态:

sql>select file_name,tablespace_name from dba_data_files;

file_name                                         tablespace_name

-----------------------------------------------------------------

+asmgroup1/wwl/datafile/users.259.780215953        users

+asmgroup1/wwl/datafile/sysaux.257.780215951       sysaux

+asmgroup1/wwl/datafile/undotbs1.258.780215953     undotbs1

+asmgroup1/wwl/datafile/system.256.780215951       system

sql>

我们由如上可以看出,现在数据都是存储在asm新建的+asmgroup1的组里面,并且文件名后面跟了一大串的数字,这是因为我们在新建表空间的时候直接采用就是oracle omf规范来进行创建的(omf实际上是9i里面就已经推出来的功能了),在asm中创建表空间和添加数据文件我们就没有必要指定数据文件的存放路径了,当然他跟db_create_file_dest这个参数是相关联的。

如下通过omf方式创建表空间和添加数据文件的方式,可以看到很方便,默认大小就是100m,会自动扩展:

1、我们通过查看db_create_file_dest参数,发现了数据文件默认创建路径是在+asmgroup1

sql> show parameter db_create_file_dest

name                                 type        value

----------------------------------------------- ------------------------------

db_create_file_dest                  string      +asmgroup1

2、使用omf特性来进行表空间的创建

sql> create tablespace asm;

tablespace created.

sql> alter tablespace asm add datafile;

tablespace altered.

3、检查表空间是否已创建好

通过如下,我们可以看到,表空间已经创建成功,并且已经开启了数据文件自动扩展功能。

sql> selectfile_name,tablespace_name,bytes/1024/1024,autoextensible,maxbytes/1024/1024from dba_data_files where tablespace_name='asm';

file_name                                          tablespace_namebytes/1024/1024 aut maxbytes/1024/1024

----------------------------------------------------------------- --------------- --- ------------------

+asmgroup1/wwl/datafile/asm.270.780300769          asm                         100 yes         32767.9844

+asmgroup1/wwl/datafile/asm.271.780300809          asm                         100 yes         32767.9844

4、可以动态的修改数据库创建文件的位置

sql> alter system set db_create_file_dest='/oracle/oradata/wwl';

system altered.

探索ORACLE之ASM概念(完整版)

一、  asm实例相关操作:

asm实例的管理,启动,关闭

asm实例的启动和数据库实例的启动有严格的先后关系,asm启动一定早于数据库实例,关闭一定晚于asm实例,因为它是数据库数据文件存储位置。如果asm没有起来,起数据库将会报ora-17503;ora-15077的错误,错误信息如下:

sql>startup

ora-01078:failure in processing system parameters

ora-01565:error in identifying file '+asmgroup1/wwl/spfilewwl.ora'

ora-17503:ksfdopn:2 failed to open file +asmgroup1/wwl/spfilewwl.ora

ora-15077:could not locate asm instance serving a required diskgroup

sql>

1.1  asm启动的方法:

sql>startup

asminstance started

totalsystem global area   83886080 bytes

fixedsize                  1217836 bytes

variablesize              57502420 bytes

asmcache                  25165824 bytes

asmdiskgroups mounted

sql>select instance_name,status from v$instance;

instance_name    status

----------------------------

+asm             started

sql>

1.2  asm关闭的方法  (必须先关闭数据库)

没有关闭rdbms实例关闭asm将报错ora-15097,提示已连接rdbms实例,无法关闭asm实例

$ export oracle_sid=+asm

$ sqlplus / as sysdba

sql> shutdown immediate

ora-15097: cannot shutdownasm instance with connected rdbms instance

关闭rdbms实例状态asm是可以正常关闭的。

$export oracle_sid=wwl    ---先关闭在asm上运行的rdbms实例

$sqlplus / as sysdba

sql> shutdown immediate

database closed.

database dismounted.

oracle instance shut down.

sql>

$export oracle_sid=+asm   ---再关闭asm实例

$ sqlplus / as sysdba

sql> shutdown immediate

asm diskgroups dismounted

asm instance shutdown

sql>

 

二、  asm三种磁盘组及磁盘的添加和维护

1、asm磁盘的添加及删除

1.1   添加这个步骤所需的磁盘(/dev/sdd -- /dev/sdm  共10块10g的盘)

1.2   通过root用户查看下当前有几个asm磁盘,磁盘状态,实例状态

# oracleasm listdisks

vol1

vol2

# oracleasm querydisk vol1

disk"vol1" is a valid asm disk

# oracleasm querydisk vol2

disk"vol2" is a valid asm disk

# ls -l /dev/oracleasm/disks/*

brw-rw---- 1oracle dba 8, 17 apr 12 05:30 /dev/oracleasm/disks/vol1

brw-rw---- 1oracle dba 8, 33 apr 12 05:30 /dev/oracleasm/disks/vol2

# oracleasm status

checking if asmis loaded: yes

checking if /dev/oracleasm is mounted: yes

     我们已知数据库当有两块通过asmlib已经标记了的磁盘,并且状态是正常的

1.3   开始通过asmlib来标记新的磁盘,用于后面的实验:

l  报错了,很经典,是由于没有创建分区导致:

# /etc/init.d/oracleasm createdisk vol3 /dev/sdd

marking disk"vol3" as an asm disk: [failed]

l  先创建分区方法:fdisk /dev/sdd /n/p/1/回车/回车/w,将所有磁盘都创建分区。

# /etc/init.d/oracleasmcreatedisk vol3 /dev/sdd1

marking disk "vol3" as anasm disk: [  ok  ]   ---可以看到,能正常创建

           # sh oracleasm   通过执行脚本命令,新建10个磁盘已全部完成标记

marking disk "vol4" as an asm disk: [  ok  ]

marking disk "vol5" as an asm disk: [  ok  ]

marking disk "vol6" as an asm disk: [  ok  ]

marking disk "vol7" as an asm disk: [  ok  ]

marking disk "vol8" as an asm disk: [  ok  ]

marking disk "vol9" as an asm disk: [  ok  ]

marking disk "vol10" as an asm disk: [  ok  ]

marking disk "vol11" as an asm disk: [  ok  ]

marking disk "vol12" as an asm disk: [  ok  ]

1.4   为asmgroup1磁盘组添加删除磁盘

l  查看磁盘组的状态

sql> selectgroup_number,name,state,type from v$asm_diskgroup;

group_number   name      state       type

------------------------ -----------------  --------------    --------

1  asmgroup1  connected  normal

           sql> select a.name grpname,b.group_number gr_number,b.disk_numberdk_number,b.name asmfile,b.path,b.mount_status,b.state from v$asm_diskgroupa,v$asm_disk b;

grpname    gr_number  dk_number asmfile                        path                      mount_s state

---------- ---------- ---------------------------------------- ------------------------- ------- --------

asmgroup1  1    0asmgroup1_0000    /dev/oracleasm/disks/vol1opened  normal

asmgroup1 1   1asmgroup1_0001     /dev/oracleasm/disks/vol2 opened  normal

l  查看磁盘组asmgroup1中的成员

sql> selectgroup_number,disk_number, failgroup,name,path from v$asm_disk where failgrouplike 'asmgroup1%';

group_numberdisk_number failgroup                     name                          path

----------------------- ------------------------------ ----------------------------------------------------------------------

          2           1 asmgroup1_0001                 asmgroup1_0001                 /dev/oracleasm/disks/vol2

           2           0 asmgroup1_0000                 asmgroup1_0000                 /dev/oracleasm/disks/vol1

sql>

l  添加为asmgroup1添加磁盘

sql> alterdiskgroup asmgroup1 add disk '/dev/oracleasm/disks/vol10';

diskgroupaltered.

l  我们可以看到已经添加成功了

sql>  select group_number,disk_number,failgroup,name,path from v$asm_disk where failgroup like 'asmgroup1%';

group_numberdisk_number failgroup                      name                           path

----------------------- ------------------------------ ----------------------------------------------------------------------

           2           2 asmgroup1_0002                 asmgroup1_0002                 /dev/oracleasm/disks/vol10

           2           1 asmgroup1_0001                 asmgroup1_0001                 /dev/oracleasm/disks/vol2

           2           0 asmgroup1_0000                 asmgroup1_0000                 /dev/oracleasm/disks/vol1

2、asm三种磁盘组的创建及删除(high  normal extermal

2.1  创建high级别的asm磁盘组,最少需要三块磁盘来创建。

sql> create diskgroup asmhigh high redundancy disk'/dev/oracleasm/disks/vol3','/dev/oracleasm/disks/vol4','/dev/oracleasm/disks/vol5';

diskgroupcreated.

2.2  创建normal级别的asm磁盘,最少需要两个磁盘来创建。

sql> creatediskgroup asmnormal normal redundancy disk'/dev/oracleasm/disks/vol6','/dev/oracleasm/disks/vol7';

diskgroupcreated.

2.3  创建extermal级别的asm磁盘,最少需要一个磁盘来创建。

sql> creatediskgroup asmexternal external redundancy disk '/dev/oracleasm/disks/vol8';

diskgroupcreated.

                                                                       

2.4  查看刚才创建的磁盘状态

sql> select name,state,type fromv$asm_diskgroup;

name            state       type

--------------- ----------- ------

asmgroup1       mounted    normal

asmhigh         mounted     high

asmnormal      mounted    normal

asmexternal     mounted    extern

2.5         为asm磁盘组添加成员,在这里我们就以normal磁盘组来进行成员添加的例子:

sql> alter diskgroup asmnormal add disk'/dev/oracleasm/disks/vol9';

diskgroup altered.

sql> select group_number,disk_number,failgroup,name,path from v$asm_disk where failgroup like 'asmnormal%';

group_number disk_number failgroup                      name                           path

------------ ----------------------------------------- ------------------------------ ----------------------------------------

          4           2 asmnormal_0002                 asmnormal_0002                 /dev/oracleasm/disks/vol9

          4           1 asmnormal_0001                 asmnormal_0001                 /dev/oracleasm/disks/vol7

           4           0 asmnormal_0000                 asmnormal_0000                 /dev/oracleasm/disks/vol6

sql>

2.6         删除磁盘组成员,在这里我们同样以normal磁盘组来进行成员删除的例子:

sql> alter diskgroup asmnormal drop disk asmnormal_0002;

diskgroup altered.

sql> select group_number,disk_number, failgroup,name,path fromv$asm_disk where failgroup like 'asmnormal%';

group_number disk_number failgroup                      name                           path

------------ ----------- ------------------------------ ----------------------------------------------------------------------

           4           1 asmnormal_0001                 asmnormal_0001                 /dev/oracleasm/disks/vol7

           4           0 asmnormal_0000                 asmnormal_0000                 /dev/oracleasm/disks/vol6

sql>

三、  模拟磁盘故障

3.1      在amsgroup1(normal类型)磁盘组中写数据

sql> selecttablespace_name,file_name,bytes/1024/1024 m from dba_data_files;

tablespace_namefile_name                                              m

------------------------------------------------------------ ----------

users          +asmgroup1/wwl/datafile/users.259.780215953            5

sysaux         +asmgroup1/wwl/datafile/sysaux.257.780215951         230

undotbs1        +asmgroup1/wwl/datafile/undotbs1.258.78021595         25

                3

system         +asmgroup1/wwl/datafile/system.256.780215951         480

asm            +asmgroup1/wwl/datafile/asm.270.780300769            100

asm             +asmgroup1/wwl/datafile/asm.271.780300809            100

6 rowsselected.

如上我们可以看到,我们所有的表空间均是放在asmgroup1中的,一会儿我们将对表空间写如数据,并删除一磁盘。

3.2     我们查看下该表空间的默认用户

sql> selectusername,default_tablespace from dba_users where default_tablespace='asm';

username                       default_tablespace

------------------------------------------------------------

wwl                            asm

3.3     在asm表空间写入数据。

通过wwl用户登录到系统创建一张表,用来测试.

sql> connwwl/wwl

connected.

sql> createtable wwl (id varchar(5),name varchar(10));

table created.

sql>  begin

  2  fori in 1..1000 loop

  3 insert into wwl values (15,'wwl15');

  4  endloop;

  5  end;

  6  /

pl/sqlprocedure successfully completed.

我们创建了一张wwl的表,并且插入了1000行数据

sql> selectcount(*) from wwl;

  count(*)

----------

      1000

3.4     模拟磁盘突然损坏

[root@wwl ~]#oracleasm deletedisk vol2;

clearing diskheader: done

dropping disk:done

[root@wwl ~]#

仔细看下面,我们通过如上的命令删除了vol2后,现在只认到一个磁盘了。

sql> selectgroup_number,disk_number, failgroup,name,path from v$asm_disk where failgrouplike 'asmgroup%';

group_numberdisk_number failgroup                     name                          path

----------------------- ------------------------------ ----------------------------------------------------------------------

           2           0 asmgroup1_0000                 asmgroup1_0000                 /dev/oracleasm/disks/vol1

sql>

但是我们的实例和我们刚才创建的表数据都没有丢失,这就是冗余的好处,normal模式它是用牺牲一块磁盘的空间来保障数据的安全性的,hight模式是至少牺牲一块硬盘来保障数据的安全性。

sql> selectcount(*) from wwl;

  count(*)

----------

      1000

3.5      而且业务是不会中断的,但是在日志和硬盘指示灯上会有告警:

asm日志信息如下:

warning:offlining disk 2.3916240783 (asmgroup1_0002) with mask 0x1

note: pstupdate: grp = 2, dsk = 2, mode = 0x6

note: cacheclosing disk 2 of grp 2: asmgroup1_0002

note: pstupdate: grp = 2

note: erasingheader on grp 2 disk asmgroup1_0002

3.6     这个时候我们需要尽快更换新的硬盘,因为发生这问题之后如果另外一个磁盘再损坏的话那将是不可弥补的数据丢失,更换新硬盘后,数据将会再次进行同步。

3.7      

四、  asm别名管理

别名就是外号,比如说当系统自动产生的名称太过复杂不怎么好记,dba可以通过别名,为它创建一个简单化的名称,而又不会对其现有名称造成任何影响。asm中创建别名是通过alter diskgroup的alias子句实现,支持增加/修改/删除等多项操作。v$asm_alias视图中可以查询到当前实例中创建的别名。

4.1    添加别名

sql> alter diskgroup asmgroup1 add alias'+asmgroup1/wwl/datafile/asm01.dbf' for'+asmgroup1/wwl/datafile/asm.270.780300769';

diskgroup altered.

4.2    修改别名

sql> alter diskgroup asmgroup1 renamealias '+asmgroup1/wwl/datafile/asm01.dbf' for'+asmgroup1/wwl/datafile/asm.270.780300769';

diskgroup altered.

4.3    删除别名

sql> alter diskgroup asmgroup1 dropalias '+asmgroup1/wwl/datafile/asm01.dbf' for'+asmgroup1/wwl/datafile/asm.270.780300769';

diskgroup altered.

   无论是添加、删除或是修改别名,对原文件路径均不会有影响。

五、  目录及目录文件管理

5.1   创建目录

sql> alter diskgroup asmgroup1 add directory '+asmgroup1/wwl1';

diskgroupaltered.

5.2   修改目录

sql> alterdiskgroup asmgroup1 rename directory '+asmgroup1/wwl1' to '+asmgroup1/wwl2';

diskgroupaltered.

5.3   删除目录

sql> alter diskgroup asmgroup1 drop directory '+asmgroup1/wwl2';

diskgroupaltered.

六、  手动平衡磁盘组

一般情况下asm都会自动对其下的磁盘组进行平衡,不过oracle也提供了手动平衡磁盘组的方式,通过alter diskgroup ... power 语句。前面提到过磁盘组的平衡度有0到11多个级别,默认是按照asm_power_limit初始化参数中设置的值,手动平衡的话,设置的平衡度可以与初始化参数中并不相同,例如,设置磁盘组平衡度为5,语句如下:

     sql>alter diskgroup asmgroup1 rebalance power 5;

diskgroup altered.

七、  通过asmcmd工具管理asm

[oracle@wwl ~]$ which asmcmd

/oracle/orahome/10.2.0/db_1/bin/asmcmd

[oracle@wwl ~]$ cd/oracle/orahome/10.2.0/db_1/bin/

asmcmd> ls 

asmexternal/

asmgroup1/

asmhigh/

asmnormal/

asmcmd>

asmcmd> help

       asmcmd [-p] [command]

       the environment variables oracle_home and oracle_sid determine the

       instance to which the program connects, and asmcmd establishes a

       bequeath connection to it, in the same manner as a sqlplus / as

       sysdba.  the user must be a memberof the sysdba group.

       specifying the -p option allows the current directory to be displayed

       in the command prompt, like so:

       asmcmd [+datafile/orcl/controlfile] >

       [command] specifies one of the following commands, along with its

       parameters.

       type "help [command]" to get help on a specific asmcmdcommand.

       commands:

       --------

cd:------------------------------------------进入下级目录或进入所需要的目录

du:------------------------------------------显示指定的asm目录下asm文件占用的所有磁盘空间

find:-----------------------------------------查找所需的文件

help:-----------------------------------------显示帮助信息

ls:---------------------------------------------列出asm目录下的内容及其属性

lsct:-------------------------------------------列出当前asm客户端的信息

lsdg:-------------------------------------------列出所有磁盘组及其属性

mkalias:--------------------------------------为系统生成的文件名创建别名

mkdir:----------------------------------------创建新目录

pwd:------------------------------------------显示当前目录路径

rm:--------------------------------------------删除asm目录下的某个文件或文件夹

rmalias:--------------------------------------删除别名

asmcmd>

要查看某个命令的相信通过在命令前添加help来查看,如下:

asmcmd> help cd

       cd <dir>

       change the current directory to <dir>.

asmcmd> help du

       du [-h] [dir]

       display total space used for files located recursively under [dir],

       similar to "du -s" under unix; default is the currentdirectory.  two

       values are returned, both in units of megabytes.  the first value does

       not take into account mirroring of the diskgroup while the second does.

       for instance, if a file occupies 100 mb of space, then it actually

       takes up 200 mb of space on a normal redundancy diskgroup and 300 mb

       of space on a high redundancy diskgroup. 

       [dir] can also contain wildcards.

       the -h flag suppresses the column headers from the output.

asmcmd> help find

       find [-t <type>] <dir> <pattern>

       find the absolute paths of all occurrences of <pattern> under<dir>.

       <pattern> can be a directory and may include wildcards.  <dir> may also

       include wildcards.  note thatdirectory names in the results have the

       "/" suffix to clarify their identity.

       the -t option allows searching by file type.  for instance, one can

       search for all the control files at once.  <type> must be one of the

       valid values in v$asm_file.type.

asmcmd>

 

八、  oracleasm工具的使用和语法介绍

[root@wwl ~]# oracleasm --help

usage: oracleasm[--exec-path=<exec_path>] <command> [ <args> ]

      oracleasm --exec-path

      oracleasm -h

      oracleasm -v

the basic oracleasm commands are:

   configure        configure the oraclelinux asmlib driver

   init             load andinitialize the asmlib driver

   exit             stop the asmlibdriver

   scandisks        scan the systemfor oracle asmlib disks

   status           display thestatus of the oracle asmlib driver

   listdisks        list known oracleasmlib disks

   querydisk        determine if adisk belongs to oracle asmlib

   createdisk       allocate a devicefor oracle asmlib use

   deletedisk       return a deviceto the operating system

   renamedisk       change the labelof an oracle asmlib disk

   update-driver    download thelatest asmlib driver

[root@wwl ~]#

九、  asm相关视图(v$)和数据字典(x$)

asm由于其高度的封装性,使得我们很难知道窥探其内部的原理。可以通过一下视图和数据字典来来查看asm 的信息。

相关视图和数据字典

view name

x$ table name

description

v$asm_diskgroup

x$kfgrp

performs  disk discovery and lists diskgroups

v$asm_diskgroup_stat

x$kfgrp_stat

diskgroup  stats without disk discovery

v$asm_disk

x$kfdsk,  x$kfkid

performs  disk discovery, lists disks and their usage metrics

v$asm_disk_stat

x$kfdsk_stat,  x$kfkid

lists  disks and their usage metrics

v$asm_file

x$kffil

lists  asm files, including metadata/asmdisk files

v$asm_alias

x$kfals

lists  asm aliases, files and directories

v$asm_template

x$kftmta

lists  the available templates and their properties

v$asm_client

x$kfncl

lists  db instances connected to asm

v$asm_operation

x$kfgmg

lists  rebalancing operations

n.a.

x$kfklib

available  libraries, includes asmlib path

n.a.

x$kfdpartner

lists  disk-to-partner relationships

n.a.

x$kffxp

extent  map table for all asm files

n.a.

x$kfdat

extent  list for all asm disks

n.a.

x$kfbh

describes  the asm cache (buffer cache of asm in blocks of 4k (_asm_blksize)

n.a.

x$kfcce

a  linked list of asm blocks. to be further investigated

this list isobtained querying v$fixed_view_definitionwhere view_name like '%asm%' whichexposes all the v$ and gv$ views with theirdefinition. fixed tables are exposedby querying v$fixed_table where name like'x$kf%' (asm fixed tables use the'x$kf' prefix).

sql>select* fromv$fixed_view_definition whereview_name like '%asm%';

sql>select* from sys.v$fixed_tablewhere name like 'x$kf%' ;

十、  asm常见的错误处理

错误一、

ora-15097:cannotshutdown asm instance with connected rdbms instance

解决办法:

发生这个问题,唯一的一个原因就是oracle实例没有关闭,或oracle实例正在关闭或处于挂起状态,导致asm实例无法关闭,解决办法,关闭rdbms实例后再关闭asm实例。

错误二、

[root@wwl ~]# /etc/init.d/oracleasm createdisk vol3 /dev/sdd

marking disk "vol3" as an asm disk: [failed]

   报这个错的原因在于磁盘为分区导致。在创建asm的之前必须线将磁盘分区,但不能格式化,后执行创建就不会有问题了。

十一、       asm 扩展性

最多支持63个磁盘组;     最多支持10000个磁盘;     最大支持4pb/磁盘;     最大支持40     exabyte/asm存储; 最大支持1百w个文件/磁盘组; 外部冗余时单个文件最大35tb,标准冗余时单个文件最大5.8tb,高冗余度时单个文件最大3.9tb

十二、       asm其它信息请参考如下连接:

http://docs.oracle.com/cd/e11882_01/server.112/e16102/asmfiles.htm