当前位置:  数据库>oracle

Linux下oracle asmlib的使用

    来源: 互联网  发布时间:2017-03-20

    本文导语: 1、fdisk磁盘[Oracle@CHN-FS-5-546 Disk1]$fdisk /dev/sdbFirst cylinder (1-239931, default 1): Using default value 1Last cylinder or +size or +sizeM or +sizeK (1-239931, default 239931): 80000Command (m for help): pDisk /dev/sdb: 1973.5 GB, 1973503918080 bytes255 heads, 63 sectors/track, 239931 cyli...

1、fdisk磁盘
[Oracle@CHN-FS-5-546 Disk1]$fdisk /dev/sdb
First cylinder (1-239931, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-239931, default 239931): 80000
Command (m for help): p
Disk /dev/sdb: 1973.5 GB, 1973503918080 bytes
255 heads, 63 sectors/track, 239931 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 239931 1927245757 5 Extended
/dev/sdb5 1 80000 642599999 83 Linux
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l
First cylinder (80001-239931, default 80001):
Using default value 80001
Last cylinder or +size or +sizeM or +sizeK (80001-239931, default 239931): 160000
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l
First cylinder (160001-239931, default 160001):
Using default value 160001
Last cylinder or +size or +sizeM or +sizeK (160001-239931, default 239931):
Using default value 239931
Command (m for help): p
Disk /dev/sdb: 1973.5 GB, 1973503918080 bytes
255 heads, 63 sectors/track, 239931 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 239931 1927245757 5 Extended
/dev/sdb5 1 80000 642599999 83 Linux
/dev/sdb6 80001 160000 642599999+ 83 Linux
/dev/sdb7 160001 239931 642045757 83 Linux
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
[root@CHN-FS-5-544 /]#









































2、安装asmlib包
[root@CHN-FS-5-546 ~]# uname -a
Linux CHN-FS-5-546 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 i686 i386 GNU/Linux
[root@CHN-FS-5-546 ~]#
[root@CHN-FS-5-546 asmlib]# rpm -Uvh oracleasm-support-2.0.3-1.i386.rpm oracleasm-2.6.9-55.ELsmp-2.0.3-1.i686.rpm oracleasmlib-2.0.2-1.i386.rpm



[root@CHN-FS-5-546 asmlib]# /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 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
Fix permissions of Oracle ASM disks on boot (y/n) [y]: y
Writing Oracle ASM library driver configuration: [ OK ]
Creating /dev/oracleasm mount point: [ OK ]
Loading module "oracleasm": [ OK ]
Mounting ASMlib driver filesystem: [ OK ]
Scanning system for ASM disks: [ OK ]
[root@CHN-FS-5-546 asmlib]#















[root@CHN-FS-5-546 asmlib]# /etc/init.d/oracleasm listdisks
[root@CHN-FS-5-546 asmlib]# fdisk -l /dev/sdb
Disk /dev/sdb: 1973.5 GB, 1973503918080 bytes
255 heads, 63 sectors/track, 239931 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 239931 1927245726 5 Extended
/dev/sdb5 1 80000 642599937 83 Linux
/dev/sdb6 80001 160000 642599968+ 83 Linux
/dev/sdb7 160001 239931 642045726 83 Linux
[root@CHN-FS-5-546 asmlib]# /etc/init.d/oracleasm createdisk VOL1 /dev/sdb5
Marking disk "/dev/sdb5" as an ASM disk: [ OK ]
[root@CHN-FS-5-546 asmlib]# /etc/init.d/oracleasm listdisks
VOL1
[root@CHN-FS-5-546 asmlib]#













3、设置linux asm数据库自启动
sh /etc/init.d/init.cssd run &
sleep 60
#su - oracle -c '/home/oracle/startup.sh'
su - oracle -c 'dbstart'
设置Oracle自启动
方法一、
1、修改/etc/oratab,将$ORACLE_HOME后默认的N改Y
[oracle@CHN-FS-5-546 ~]$ more /etc/oratab
。。。。。。
+ASM:/u01/app/oracle/product/10.2.0/db_1:Y
logstat1:/u01/app/oracle/product/10.2.0/db_1:Y
2、修改$ORACLE_HOME/bin/dbstart
将ORACLE_HOME_LISTNER赋值为$ORACLE_HOME
3、在rc.local中
添加su - oracle -c 'dbstart'
方法二、
1、添加一个startup脚本
[root@CHN-FS-5-546 oracle]# more startup.sh
ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
ORACLE_SID=+ASM
PATH=$ORACLE_HOME/bin
export ORACLE_HOME ORACLE_SID PATH
sqlplus -S '/as sysdba'


    
 
 

您可能感兴趣的文章:

  • Docker官方镜像将会使用Alpine Linux替换Ubuntu
  • linux支持ti-rpc么?ti-rpc在linux中是不是只使用udp协议,不能使用tcp协议
  • linux下free命令显示的内存使用情况分析
  • 我们网站的服务器从windows2000迁往linux,ASP程序继续使用,可是我连LINUX的皮毛都不了解,大家告诉我LINUX下怎么建网站?? iis7站长之家
  • linux下不使用sudo命令执行docker的操作步骤
  • 在XP下使用VMWare安装了Linux AS 5.6之后,使用FTP工具可以远程连接Linux,而在cmd命令行中却连接不上,什么原因 ?
  • 如何使用linux下gdb来调试python程序
  • 原来装了linux和win2k,使用LiLO启动,现在重新win2k,如何恢复使用LILO来引导使得Linux可用
  • linux/Centos/ubuntu下如何使用umask命令修改新建文件时的默认权限
  • 在shell中使用数组需要什么特殊的条件马? 怎么在有的linux下能够用,在有的linux下就不能能使用?
  • linux下c/c++使用hash_map方法介绍
  • asp程序使用的access在Linux下如何使用!
  • linux下objdump命令用法介绍及如何使用objdump命令进行反汇编
  • [请置顶]关于Linux的安装使用问题 请放到 软件使用/操作系统 里提问
  • linux下top命令详解包括top命令参数使用及结果(virt,res,shr)排序举例说明
  • 新装的Linux使用root用户不能使用FTP?
  • linux top命令详解以及top命令的各项使用技巧详细说明
  • LINUX下使用Eclipse,如何使用交叉编译器?
  • linux系统下使用使用性能监视工具的前提?
  • 使用VWMARE安装linux的内存使用问题
  • 嵌入式Linux使用外挂Vsftpd不能正常使用, 请高手解答,谢谢。
  • linux下安装oracle后使用命令行启动的方法 linux启动oracle
  • 在linux下安装oracle,如何设置让oracle自动启动!也就是让oracle那个服务自动启动,不是手动的
  • Linux系统下Oracle的启动与Oracle监听的启动
  • 在linux 中如何删除oracle db 与卸载oracle.
  • 如何将Aix上的oracle 物理备份 然后再在linux 系统上还原oracle
  • 那里有免费的oracle odbc driver for linux?或怎么破解easysoft oracle odbc driver安装包?急
  • XP Oracle客户端进入Linux Oracle服务端
  • Linux /$ORACLE_HOME $ORACLE_HOME
  • 在Red Hat Linux 9 和 Oracle 9.2 环境下,如何配制字符集,让Oracle能存入并显示日语里的假名?
  • 红帽Linux表示Oracle提供Linux支持是不完美的
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • linux c/c++ IP字符串转换成可比较大小的数字
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • secureCRT下Linux终端汉字乱码解决方法
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • Linux c字符串中不可打印字符转换成16进制
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux
  • linux命令大全详细分类介绍及常用linux命令文档手册下载
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在没有linux的盘,只有DOS启动盘)
  • Linux Kernel 'sctp_v6_xmit()'函数信息泄露漏洞
  • 如何让win2000和linux共存。我装好WIN2000,再装LINUX7.0,但LILO只能找到LINUX,不能引导WIN2000
  • linux c下利用srand和rand函数生成随机字符串
  • 在windows中的VMware装了个linux,主板有两个串口,能做windows和linux的串口通信测试么,怎么测试这两个串口在linux是有效
  • Linux c++虚函数(virtual function)简单用法示例代码
  • 我们网站的服务器从windows2000迁往linux,ASP程序继续使用,可是我连LINUX的皮毛都不了解,大家告诉我LINUX下怎么建网站??
  • Linux下chmod命令详细介绍及用法举例
  • 中文Linux与西文Linus分别哪一个版是权威?I认为是:中科软的白旗Linux与西文的绿帽子Linux!大家的看法呢?
  • Linux下c基于openssl生成MD5的函数
  • 我重装了winme,却进不了Linux了,而我现在又没有Linux光盘,也没有Linux启动盘,还有没有办法?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3