当前位置:  数据库>oracle

Oracle 11g r2 Rac 安装

    来源: 互联网  发布时间:2017-04-15

    本文导语: 查看操作系统版本:  [root@rac1 ~]# cat /etc/issueEnterprise Linux Enterprise Linux AS release 4 (October Update 7)Kernel r on an m 查看内核版本: [root@rac1 ~]# cat /proc/versionLinux version 2.6.9-78.0.0.0.1.ELsmp (mockbuild@ca-build15.us.Oracle.com) (gcc version 3.4.6 20060404 (Re...

查看操作系统版本:

 [root@rac1 ~]# cat /etc/issue
Enterprise Linux Enterprise Linux AS release 4 (October Update 7)
Kernel r on an m


查看内核版本:

[root@rac1 ~]# cat /proc/version
Linux version 2.6.9-78.0.0.0.1.ELsmp (mockbuild@ca-build15.us.Oracle.com) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-10)) #1 SMP Fri Jul 25 14:41:56 EDT 2008

Oracle 11g r2 Rac 安装[图片]

vi /etc/hosts


127.0.0.1       localhost
192.168.10.11   rac1
192.168.10.12   rac1-vip
10.10.10.11     rac1-priv

192.168.10.21   rac2
192.168.10.22   rac2-vip
10.10.10.21     rac2-priv

192.168.10.31 rac-cluster












groupadd -g 1000 oinstall
groupadd -g 1031 dba
useradd -u 1101 -g oinstall -G dba oracle
mkdir -p  /u01/app/11.2.0/grid
mkdir -p /u01/app/oracle
chown -R oracle:oinstall /u01
chmod -R 775 /u01/ 

Using any text editor, create or edit the /etc/sysctl.conf file, and add or edit lines similar to the following:







Note:

Include lines only for the kernel parameter values that you want to change. For the semaphore parameters (kernel.sem), you must specify all four values. If any of the current values are larger than the minimum value, then specify the larger value.
view plaincopy to clipboardprint?
  • fs.aio-max-nr = 1048576  
  • fs.file-max = 6815744  
  • kernel.shmall = 2097152  
  • kernel.shmmax = 536870912  
  • kernel.shmmni = 4096  
  • kernel.sem = 250 32000 100 128  
  • net.ipv4.ip_local_port_range = 9000 65500  
  • net.core.rmem_default = 262144  
  • net.core.rmem_max = 4194304  
  • net.core.wmem_default = 262144  
  • net.core.wmem_max = 1048586  

  • Note:

    The minimum value required for shmmax is 0.5 GB. Oracle recommends that you set the value ofshmmax to 2.0 GB for optimum performance of the system.

    By specifying the values in the /etc/sysctl.conf file, they persist when you restart the system. On SUSE Linux Enterprise Server systems, enter the following command to ensure that the system reads the/etc/sysctl.conf file when it restarts:

    # /sbin/chkconfig boot.sysctl on

    Enter the following command to change the current values of the kernel parameters:

    # /sbin/sysctl -p


    If necessary, update the resource limits in the /etc/security/limits.conf configuration file for the installation owner. For example, add the following lines to the/etc/security/limits.conf file:

    view plaincopy to clipboardprint?
  • oracle              soft    nproc   2047  
  • oracle              hard    nproc   16384  
  • oracle              soft    nofile  1024  
  • oracle              hard    nofile  65536  
  • oracle              soft    stack   10240  
  • Sendmail是最重要的邮件传输代理程序。理解电子邮件的工作模式是非常重要的。一般情况下,我们把电子邮件程序分解成用户代理,传输代理和投递代理。 关闭Sendmail服务具体命令实现如下:

    关闭sendmail服务

    (1)[root@sample ~]# /etc/rc.d/init.d/sendmail stop  ← 关闭sendmail服务
    或者[root@sample ~]# service sendmail stop  ← 关闭sendmail服务
    Shutting down sendmail: [ OK ]
    Shutting down sm-client: [ OK ]


    (2)[root@sample ~]# chkconfig sendmail off  ← 关闭sendmail自启动

    (3)[root@sample ~]# chkconfig --list sendmail  ← 确认sendmail自启动已被关闭(都为off就OK)
    sendmail 0:off 1:off 2:off 3:off 4:off 5:off 6:off

    在大部分Linux发行版本中,sendmail这个古老的邮件系统包是默认安装的,装完系统后,重启时,不少兄弟遇到在启动过程中,到了启动sendmail服务的时候就停止了,没有耐性和经验的朋友这时候可能会以为系统出故障或者系统没有装好,其实既不是系统出故障,一般也不是系统没有安装好,而是系统启动sendmail的时候在查询你设置的主机名的A记录或反向域名记录,由于全球9台DNS根系统都在美国,这个时候会去查询本机主机名对应的dns A记录。

    知道了问题的症结,就可以对症下药了,比如我们可以修改系统配置文件/etc/hosts

    让sendmaill绕过查询远程主机,这里给出一种最简单的方法

    修改/etc/hosts ,未修改之前

    127.0.0.1 localhost.localdomain localhost

    修改成

    127.0.0.1 localhost.localdomain localhost 主机名称

    上述操作要在root权限下执行,查看主机名命令:hostname。

    当我重新启动是发现sendmail和sm-client启动是秒级了。

    NTP

    To do this, on Oracle Linux, Red Hat Linux, and Asianux systems, edit the
    /etc/sysconfig/ntpd file to add the -x flag, as in the following example:
    # Drop root to id 'ntp:ntp' by default.
    OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid"
    # Set to 'yes' to sync hw clock after successful ntpdate
    SYNC_HWCLOCK=no
    # Additional options for ntpdate
    NTPDATE_OPTIONS=""
    Then, restart the NTP service.
    # /sbin/service ntp restart








     

    #/sbin/chkconfig ntpd on

    Linux 硬盘分区

    #fdisk -l

    #fdisk /dev/sdb

    #mkfs -t ext3 /dev/sdb1

    #mount /dev/sdb1 /u01

    #df -lh

    #vi /etc/fstab

      /dev/sdb1  /u01  ext3  defaults  1  2

    本案例中使用的是RedHat Enterprise AS 4 Update 2系统,内核版本为2.6.9-22.ELsmp,因此,
    需要下载的OCFS2内核模块(kernel module)也必须相应版本的:
    http://oss.oracle.com/projects/ocfs2/

    再下载OCFS2 tools(命令和启动脚本)以及 OCFS2 控制台:
    http://oss.oracle.com/projects/ocfs2-tools

    o2cb_ctl: Unable to access cluster service while creating node  

    在安装完成ocfs2 之后, 运行# ocfs2console

    Configure Nodes --> Add --> 输入Private Node名和Private IP --> OK --> Apply
    出现如下错误:
    o2cb_ctl: Unable to access cluster service while creating node
    Could not add node node1




    后来搜索到一些文章,发现所有节点需要到 /etc/ocfs2/查看cluster.conf是否有内容,如果有,全部删除掉 ,然后重新配置一次,或者直接删除掉cluster.conf文件再重新配置。 

    [root@rac1 app]# mounted.ocfs2 -f
    Device                FS     Nodes
    /dev/sdc1             ocfs2  rac1, rac2
    /dev/sdc2             ocfs2  rac1, rac2



        
     
     

    您可能感兴趣的文章:

  • 请问在solaris下安装ORACLE,用root用户和用oracle用户安装有什么区别么?
  • 在linux下安装oracle,如何设置让oracle自动启动!也就是让oracle那个服务自动启动,不是手动的
  • SCO unix下安装oracle,但没有光盘,请大家推荐一个oracle下载站点(unix版本的)。谢谢!!!!
  • linux下安装oracle后使用命令行启动的方法 linux启动oracle
  • 请问:谁在linux下安装过oracle?详细安装步骤共享一下吧!我有急用。谢谢了!
  • 那里有免费的oracle odbc driver for linux?或怎么破解easysoft oracle odbc driver安装包?急
  • 在redhat9.0下,能安装oracle的客户端么?? 哪里下载,怎么安装?
  • VMware中linux环境下oracle安装图文教程(二)ORACLE 10.2.05版本的升级补丁安装
  • 安装oracle9时,安装界面的字体无法正确显示,怎么解决啊???
  • Linux下的Oracle安装问题(非常问题)
  • 有人在fedora 10下安装 oracle database 11g,没有呀?提供个安装步骤
  • Linux安装oracle,菜鸟急用!
  • 在ubuntu安装oracle的疑问
  • 在Redhat7.2+Oracle8i如果硬件配置中用P4处理器,对oracle的安装有没有影响(100分)
  • 安装Oracle加载数据库错误areasQueries的解决
  • vmware 下安装oracle
  • CentOS 5 环境下安装oracle 10g 与 rhel 5下 安装有区别吗? [散分]
  • 在Linux下安装ORACLE
  • 安装ORACLE时的安装界面显示一堆乱码如何解决(我很菜的,分100可再加)---在线
  • 求ubuntu12.04下面安装oracle数据库,求安装教材,百度上就两种,都不能成功
  • oracle 11g最新版官方下载地址
  • Oracle EBS R12 支持 Oracle Database 11g
  • Oracle 10g和Oracle 11g网格技术介绍
  • Linux版本的Oracle 11g将首先被发布
  • 关于Linux下oracle是10g?还是11g?
  • Oracle 11g 相关工具netca,dbca乱码之解决
  • fedora10安装oracle11g提示物理内存不足怎么办?
  • Oracle 11g解锁scott
  • Oracle 11g R2 数据库将在9月发布
  • Oracle内存数据库11g和高速缓存11g上市
  • 在ubuntu10.04上安装oracle11g失败
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Oracle 12c发布简单介绍及官方下载地址
  • 请问su oracle 和su - oracle有什么不同?
  • Oracle 数据库(oracle Database)Select 多表关联查询方式
  • 虚拟机装Oracle R12与Oracle10g
  • Oracle数据库(Oracle Database)体系结构及基本组成介绍
  • Oracle 数据库开发工具 Oracle SQL Developer
  • 如何设置让Oracle SQL Developer显示的时间包含时分秒
  • 请问大家用oracle数据库, 用import oracle.*;下的东西么? 还是用标准库?
  • oracle中如何把表中具有相同值列的多行数据合并成一行
  • Linux /$ORACLE_HOME $ORACLE_HOME
  • Oracle 数据库(oracle Database)性能调优技术详解
  • Linux系统下Oracle的启动与Oracle监听的启动
  • ORACLE日期相关操作
  • 网间Oracle的连接,远程连接Oracle服务器??
  • ORACLE数据库常用字段数据类型介绍
  • 请教:.profile中:if [ -d /opt/oracle/db01/app/oracle/product/9.2.0 ]是什么意思?
  • Oracle 12c的九大最新技术特性介绍
  • 在linux 中如何删除oracle db 与卸载oracle.
  • ORACLE中DBMS_RANDOM随机数生成包
  • 如何将Aix上的oracle 物理备份 然后再在linux 系统上还原oracle
  • Oracle的thin driver,是不是装了Oracle 8i就自带了还是要另外下载.


  • 站内导航:


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

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

    浙ICP备11055608号-3