热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

Linux安装单实例Oracle11gASM

环境:OS:Redhat5.564BitDB:Oracle11.2.0.364BitGridDatabaseVM虚拟机说明:在Oracle10g版本中两种是在一个介质中,11g是分为两个介质。步骤:1:Linux系统磁盘管理(磁盘组、裸设备等)2:Grid软件安装3:Database软件安装4:ASM管理一

环境: OS:Redhat 5.5 64Bit DB:Oracle 11.2.0.3 64Bit Grid/Database VM 虚拟机 说明:在Oracle10g 版本中两种是在一个介质中,11g是分为两个介质。 步骤: 1:Linux系统磁盘管理(磁盘组、裸设备等) 2:Grid软件安装 3:Database软件安装 4:ASM管理 一

环境:

OS:Redhat 5.5 64Bit

DB:Oracle 11.2.0.3 64Bit Grid/Database

VM 虚拟机

说明:在Oracle10g 版本中两种是在一个介质中,11g是分为两个介质。


步骤:

1:Linux系统磁盘管理(磁盘组、裸设备等)

2:Grid软件安装

3:Database软件安装

4:ASM管理


一:Linux系统磁盘管理

一般情况下,我们都是在我的虚拟机做实验,所以,我一开始规划了硬盘存储比如40GB,安装完Linux操作系统,系统只有一个sda,而且默认情况下这个容量不能再分配空间了,我们需要再添加一块硬盘,使用fdisk命令如下

[root@asm ~]# fdisk -l

Disk /dev/sda: 42.9 GB, 42949672960 bytes
255 heads, 63 sectors/track, 5221 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        5221    41833260   8e  Linux LVM

Disk /dev/sdb: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1         974     7823623+  83  Linux
/dev/sdb2             975        1948     7823655   83  Linux
新添加的一块磁盘 sdb 20GB ,我们就在这个磁盘上进行测试,我可以在sdb磁盘上创建分区,设置分区大小比如创建sdb1(8G),sdb2(8G)
root@asm ~]# fdisk /dev/sdb

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').
----------输入m 查看帮助
Command (m for help): m
Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)
-------------输入p查看
Command (m for help): p

Disk /dev/sdb: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf9f81f26

   Device Boot      Start         End      Blocks   Id  System
-----------输入n新建分区(e是扩展分区,p是主要分区)
Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
-----------创建主分区,输入分区号1,设置大小+8G
p
Partition number (1-4): 1
First cylinder (1-2610, default 1): 
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610): +8G

Command (m for help): p

Disk /dev/sdb: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf9f81f26

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1        1045     8393931   83  Linux

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (1046-2610, default 1046): 
Using default value 1046
Last cylinder, +cylinders or +size{K,M,G} (1046-2610, default 2610): +8G       

Command (m for help): p

Disk /dev/sdb: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xf9f81f26

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1        1045     8393931   83  Linux
/dev/sdb2            1046        2090     8393962+  83  Linux
-----------输入w保存
Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.

创建了两个分区,我们需要进行一个操作partprobe。

原因:linux上,在安装系统之后,创建分区并且在不重新启动机器的情况下系统能够识别这些分区需要使用partprobe。

到目前为止,我们的这些分区

1:可以直接Mount路径进行文件系统的存储

使用分区,要进行格式化,比如下面是格式化为ext3的文件系统mkfs.ext3 /dev/sdb1

2:Oracle数据库挂接裸设备

下面是怎么将分区文件映射为裸设备,我们需要在如下文件添加记录

[root@asm ~]# more /etc/udev/rules.d/60-raw.rules
# Enter raw device bindings here.
#
# An example would be:
#   ACTION=="add", KERNEL=="sda", RUN+="/bin/raw /dev/raw/raw1 %N"
# to bind /dev/raw/raw1 to /dev/sda, or
#   ACTION=="add", ENV{MAJOR}=="8", ENV{MINOR}=="1", RUN+="/bin/raw /dev/raw/raw
2 %M %m"
# to bind /dev/raw/raw2 to the device with major 8, minor 1.

ACTION=="add", KERNEL=="sdb1", RUN+="/bin/raw /dev/raw/raw1 %N"
ACTION=="add", KERNEL=="sdb2", RUN+="/bin/raw /dev/raw/raw2 %N"
KERNEL=="raw*", OWNER="grid" GROUP="dba", MODE="0660"
前两行是将我新创建的分区映射为不同的raw

然后是将我的文件权限赋予grid用户(后面安装Grid需要创建)

执行完毕,保存文件需要重启一下服务 start_udev

然后查看raw路径

[root@asm ~]# ls /dev/raw
raw1  raw2

二:安装Grid软件

其实安装Grid软件,比较简单,如果安装过DB软件,基本上一样,在安装界面有几个需要注意

1:创建grid用户 所属dba组

2:安装软件,在安装过程中需要注意如下界面


创建ASM磁盘组,名字griddg,选择相关的裸设备raw1


剩下的基本默认安装即可

3:配置一下grid用户的环境变量


安装完毕之后,可以查看操作系统是否有asm进程

[grid@asm ~]$ ps -ef | grep  asm
avahi     3322     1  0 11:03 ?        00:00:00 avahi-daemon: running [asm.local]
grid     26982     1  0 12:51 ?        00:00:00 asm_pmon_+ASM
grid     26984     1  0 12:51 ?        00:00:00 asm_psp0_+ASM
grid     26986     1  0 12:51 ?        00:00:00 asm_vktm_+ASM
grid     26990     1  0 12:51 ?        00:00:00 asm_gen0_+ASM
grid     26992     1  0 12:51 ?        00:00:00 asm_diag_+ASM
grid     26994     1  0 12:51 ?        00:00:00 asm_dia0_+ASM
grid     26996     1  0 12:51 ?        00:00:00 asm_mman_+ASM
grid     26998     1  0 12:51 ?        00:00:00 asm_dbw0_+ASM
grid     27000     1  0 12:51 ?        00:00:00 asm_lgwr_+ASM
grid     27002     1  0 12:51 ?        00:00:00 asm_ckpt_+ASM
grid     27004     1  0 12:51 ?        00:00:00 asm_smon_+ASM
grid     27006     1  0 12:51 ?        00:00:00 asm_rbal_+ASM
grid     27008     1  0 12:51 ?        00:00:00 asm_gmon_+ASM
grid     27010     1  0 12:51 ?        00:00:00 asm_mmon_+ASM
grid     27012     1  0 12:51 ?        00:00:00 asm_mmnl_+ASM
grid     27081 27056  0 12:56 pts/4    00:00:00 grep asm
同样,也可以连接sqlplus,查询相关视图信息
login as: grid
grid@192.168.100.203's password:
Last login: Wed Dec 11 12:36:47 2013 from 192.168.100.111
-----------这里面必须使用sysasm来登录而不能使用sysdba
[grid@asm ~]$ sqlplus / as sysasm

SQL*Plus: Release 11.2.0.3.0 Production on Wed Dec 11 13:07:41 2013

Copyright (c) 1982, 2011, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Automatic Storage Management option

SQL> set line 2000
SQL> set long 2000
---------查看磁盘状态,现在是两个裸设备Raw1和raw2,raw1已经被使用了创建griddg磁盘组了
SQL> select name,path from v$asm_disk;

NAME                           PATH
------------------------------ ------------------
                               /dev/raw/raw2
GRIDDG_0000                    /dev/raw/raw1


-----------查看磁盘组状态,可以看到griddg是mounted状态
SQL> select name ,state from v$asm_diskgroup;

NAME                           STATE
------------------------------ -----------
GRIDDG                         MOUNTED


关于ASM的相关视图,可以参考如下



同样,ASM也提供了ASMCMD命令来让用户更好的管理ASM

[grid@asm ~]$ asmcmd
ASMCMD> help

            asmcmd [-V] [-v ] [--privilege ] [-p] [command]
asmcmd_no_conn_str

        Starts asmcmd or executes the command

        asmcmd [-V] [-v ] [--privilege ] [-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
        SYSASM.  The user must be a member of the OSASM group.

        Specifying the -V option prints the asmcmd version number and
        exits immediately.

        Specifying the -v option prints extra information that can help
        advanced users diagnose problems.

        Specify the --privilege option to choose the type of connection. There a                                                                                                              re
        only two possibilities: connecting as SYSASM or as SYSDBA.
        The default value if this option is unspecified is SYSASM.

        Specifying the -p option allows the current directory to be displayed
        in the command prompt, like so:

        ASMCMD [+DATA/ORCL/CONTROLFILE] >

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

        Type "help [command]" to get help on a specific ASMCMD command.';

        commands:
        --------

        md_backup, md_restore

        lsattr, setattr

        cd, cp, du, find, help, ls, lsct, lsdg, lsof, mkalias
        mkdir, pwd, rm, rmalias

        chdg, chkdg, dropdg, iostat, lsdsk, lsod, mkdg, mount
        offline, online, rebal, remap, umount

        dsget, dsset, lsop, shutdown, spbackup, spcopy, spget
        spmove, spset, startup

        chtmpl, lstmpl, mktmpl, rmtmpl

        chgrp, chmod, chown, groups, grpmod, lsgrp, lspwusr, lsusr
        mkgrp, mkusr, orapwusr, passwd, rmgrp, rmusr

        volcreate, voldelete, voldisable, volenable, volinfo
        volresize, volset, volstat

三:安装DB软件

在安装DB软件之前,需要使用ASMCA来创建数据磁盘组



点击创建


创建完毕之后,我们就可以安装DB软件了

安装DB软件,我们选择先安装软件,后建库的模式


安装完软件,配置好oracle用户的环境变量,然后执行dbca,选择自定义建库模式


在选择数据库存储的时候 选择ASM,然后选择区域即可


我们可以使用sqlplus连接,查看文件存储位置来确认是否建库完毕

[oracle@asm ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.3.0 Production on Wed Dec 11 17:58:29 2013

Copyright (c) 1982, 2011, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options

SQL> select name from v$datafile;

NAME
--------------------------------------------------------------------------------
+DATADG/orcl/datafile/system.260.833896429
+DATADG/orcl/datafile/sysaux.261.833896455
+DATADG/orcl/datafile/undotbs1.262.833896477
+DATADG/orcl/datafile/users.264.833896499

推荐阅读
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • 本文详细介绍了如何在 Linux 平台上安装和配置 PostgreSQL 数据库。通过访问官方资源并遵循特定的操作步骤,用户可以在不同发行版(如 Ubuntu 和 Red Hat)上顺利完成 PostgreSQL 的安装。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • C++实现经典排序算法
    本文详细介绍了七种经典的排序算法及其性能分析。每种算法的平均、最坏和最好情况的时间复杂度、辅助空间需求以及稳定性都被列出,帮助读者全面了解这些排序方法的特点。 ... [详细]
  • 本文基于刘洪波老师的《英文词根词缀精讲》,深入探讨了多个重要词根词缀的起源及其相关词汇,帮助读者更好地理解和记忆英语单词。 ... [详细]
  • 题目描述:给定n个半开区间[a, b),要求使用两个互不重叠的记录器,求最多可以记录多少个区间。解决方案采用贪心算法,通过排序和遍历实现最优解。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 如何在PHPcms网站中添加广告
    本文详细介绍了在PHPcms网站后台添加广告的方法,涵盖多种常见的广告形式,如百度广告和Google广告,并提供了相关设置的步骤。同时,文章还探讨了优化网站流量的SEO策略。 ... [详细]
  • 当iOS设备越狱后,某些插件可能会导致系统崩溃(白苹果)。此时,可以通过进入安全模式来排查并删除有问题的插件。本文将详细介绍如何通过特定按键组合进入不加载MobileSubstrate的安全模式,并提供相关背景知识。 ... [详细]
  • 本文介绍了如何通过 Maven 依赖引入 SQLiteJDBC 和 HikariCP 包,从而在 Java 应用中高效地连接和操作 SQLite 数据库。文章提供了详细的代码示例,并解释了每个步骤的实现细节。 ... [详细]
  • 在使用SQL Server进行动态SQL查询时,如果遇到LIKE语句无法正确返回预期结果的情况,通常是因为参数传递方式不当。本文将详细探讨这一问题,并提供解决方案及相关的技术背景。 ... [详细]
  • 本文介绍如何通过创建替代插入触发器,使对视图的插入操作能够正确更新相关的基本表。涉及的表包括:飞机(Aircraft)、员工(Employee)和认证(Certification)。 ... [详细]
author-avatar
转化术治_953
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有