您的位置:首页 > 数据库 > Oracle

ORACLE Initializing the Oracle ASMLib driver: [FAILED]

2015-03-27 14:13 453 查看
在配置asm服务时,遇到以下错误:

[root@db1 tmp]# service 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 []: grid

Default group to own the driver interface []: asmadmin

Start Oracle ASM library driver on boot (y/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:                     [FAILED]

Cause:

首先查看日志/var/log/oracleasm

[root@db1 tmp]# more /var/log/oracleasm

Disk "ASM_DATA1" does not exist or is not instantiated

Writing disk header: done

Instantiating disk: oracleasm-instantiate-disk: Unable to open manager: No such file or directory

failed

Clearing disk header: done

Disk "ASM_DATA1" does not exist or is not instantiated

Writing disk header: done

Instantiating disk: oracleasm-instantiate-disk: Unable to open manager: No such file or directory

failed

Clearing disk header: done
Creating /dev/oracleasm mount point: /dev/oracleasm

Loading module "oracleasm": failed

Unable to load module "oracleasm


发现出错是由于无法加载oracleasm 模块

Solution:

查看该模块是否存在:

[root@db1 tmp]# find / -name "oracleasm.ko"

/lib/modules/2.6.18-164.el5/kernel/drivers/addon/oracleasm/oracleasm.ko

若存在,手动安装该模块

[root@db1 lib]# which insmod

/sbin/insmod

[root@db1 lib]# insmod /lib/modules/2.6.18-164.el5/kernel/drivers/addon/oracleasm/oracleasm.ko

再次尝试,这次就成功了。

[root@db1 lib]# service 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 [grid]:

Default group to own the driver interface [asmadmin]:

Start Oracle ASM library driver on boot (y/n) [y]:

Scan for Oracle ASM disks on boot (y/n) [y]:

Writing Oracle ASM library driver configuration: done

Initializing the Oracle ASMLib driver:                     [  OK  ]

Scanning the system for Oracle ASMLib disks:               [  OK  ]

但是这种方法治标不治本

想要彻底更正这个错误,需要对应系统内核版本正确的安装asm的包。

[root@db1 grid]# uname -r
2.6.18-402.el5

[root@db1 tmp]# ll oracleasm*

-rwxrw-rw- 1 oracle oinstall 136910 Mar 26 15:54 oracleasm-2.6.18-164.el5-2.0.5-1.el5.x86_64.rpm

-rwxrw-rw- 1 oracle oinstall  14176 Mar 26 16:02 oracleasmlib-2.0.4-1.el5.x86_64(1).rpm

-rwxrw-rw- 1 oracle oinstall  91430 Mar 26 16:07 oracleasm-support-2.1.7-1.el5.x86_64.rpm
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐