>데이터 베이스 >MySQL 튜토리얼 >Oracle asmlib的configure错误小结

Oracle asmlib的configure错误小结

WBOY
WBOY원래의
2016-06-07 17:14:491298검색

Oracle asmlib 是Oracle 公司在linux 平台上提供的一种取代raw devices 的系统程序包。本文描述了在oracel asmlib 使用过程中出现

Oracle asmlib 是Oracle 公司在linux 平台上提供的一种取代raw devices 的系统程序包。它的安装和配置很简单,可以去参考我写的  一文。

本文描述了在oracel asmlib 使用过程中出现的一个小问题。

在asmlib 软件包安装完成后,使用oracleasm configure 完成配置操作。

正常情况下,执行过程应该是如下所示:

[root@db2 ~]# 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 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) [y]:

Fix permissions of Oracle ASM disks on boot (y/n) [y]:

Writing Oracle ASM library driver configuration:            [   OK   ]

Scanning system for ASM disks:                              [   OK   ]

这个脚本执行完成了四大任务。

1  、创建了配置文件/etc/sysconfig/oracleasm

2  、创建了挂载点/dev/oracleasm

3  、加载oracleasm  内核模块

4  、挂载ASM  函数驱动文件系统

但是,,现在执行结果却是这样,如下:

[root@oracle16 ~]# oracleasm configure

ORACLEASM_ENABLED=false

ORACLEASM_UID=

ORACLEASM_GID=

ORACLEASM_SCANBOOT=true

ORACLEASM_SCANORDER=""

ORACLEASM_SCANEXCLUDE=""

没有出现任何配置过程的参数项。从结果看,像是oracleasm 已经配置过了,只是设置成不使用状态了。

我们先分析一下这个应用程序oracleasm 。

[root@oracle16 ~]# which oracleasm

/usr/sbin/oracleasm

 

[root@oracle16 ~]# oracleasm configure -h

Usage: oracleasm-configure [-l ] [-i|-I] [-e|-d] [-u ] [-g ] [-s y|n]

 

[[-o ] ...] [[-x ] ...]

linux

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.