当前位置:  数据库>oracle

CentOS 4.7+RAC+Oracle 10g + ASM安装遇到问题

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

    本文导语: 1. 在Oracle 10G在安装cluster时,第到61%的时候,就提示如下错误: WARNING: Error while copying directory /home/oracle/app/oracle/10R2/crs with exclude file list 'null' to nodes 'rac2'.[PRKC-1002 : All the submitted commands did not execute successfully](类似) 解决: 这个...

1. 在Oracle 10G在安装cluster时,第到61%的时候,就提示如下错误:

WARNING: Error while copying directory /home/oracle/app/oracle/10R2/crs with exclude file list 'null' to nodes 'rac2'.
[PRKC-1002 : All the submitted commands did not execute successfully](类似)

解决:

这个错误可以忽略

原因: 在安装 Oracle 集群件、数据库以及随附 CD 期间,Oracle Universal Installer(OUI)将首先安装本地节点的软件(运行该安装程序的本地节点,我在rac1上运行的安装程序)。然后,将该软件以远程方式复制到集群中的其余节点(即rac2).

在远程复制过程中,OUI将在每个远程节点上执行 UNIX“tar”命令,以提取进行了存档和复制的文件。如果执行安装的节点(即本地节点rac1)上的日期和时间大于其要进行复制的节点(远程节点rac2)上的日期和时间,那么OUI将在“tar”中引发一个错误,以指示其在试图提取带有时间戳的文件时失败。

Error while copying directory
/u01/app/oracle/product/crs with exclude file list 'null' to nodes 'rac2'.
[PRKC-1002 :All the submitted commands did not execute successfully]
---------------------------------------------
rac2:
/bin/tar:./bin/lsnodes:time stamp 2010-09-13 09:21:34 is 735 s in the future
/bin/tar:./bin/olsnodes:time stamp 2010-09-13 09:21:34 is 735 s in the future
...(more errors on this node)






请注意,尽管这看起来像OUI中一个严重的错误,但您完全可以将其看作是一个警告而忽略。“tar”命令 DOES确实提取了文件;然而,
当您在远程节点上执行文件列表时(使用ls -l),它们将缺少时间字段,直到服务器上的时间大于该文件的时间戳。
 
在启动以上任何一个所述安装之前,确保尽可能将集群的每个成员节点设置为相同的时间和日期,做好时间同步,但是我为了安装的顺利
一般让本地安装节点比远程复制节点慢10分钟



[root@rac1 ~]# date -s "Thu Dec 23 12:22:28 CST 2010"
[root@rac2 ~]# date -s "Thu Dec 23 12:32:28 CST 2010"

2. 当已经成功安装完clusterware后,再安装oracle software的过程中,会报如下的错误:

You have chosen to configure Automatic Storage Management (ASM) on the
following nodes:

rac1
rac2
Though there is no ASM instance configured for the local node, the
Oracle Universal Installer has detected the existence of an ASM instance
on the following remote nodes:
rac1
rac2
If you want to configure ASM on this node, you must extend the ASM
cluster of instances to this node (using the Add Instance procedure),
rather than choosing to configure a new ASM instance during the install.








这个错误的原因是第一次安装没有卸载干净,导致这次安装识别到已经安装的错误,解决方法是重新彻底卸载,
还要清空asm的磁盘头部信息,用如下命令:

for example: dd if=/dev/zero of=/dev/ bs=1024k count=50


# dd if=/dev/zero of=/dev/sdb bs=1024k count=200

3. 当遇到类似下面的错误时

Command = /u01/app/oracle/crs10g/bin/racgons has failed
 Execution Error : WARNING: rac1:6200 already configured.
WARNING: rac2:6200 already configured.

可以用如下方式解决, 移除后retry

[oracle@rac1 bin]$ racgons  remove_config rac1:6200
racgons: Existing key value on rac1 = 6200.
racgons: rac1:6200 removed from OCR.
[oracle@rac1 bin]$ racgons  remove_config rac2:6200
racgons: Existing key value on rac2 = 6200.
racgons: rac2:6200 removed from OCR.




4. 添加网关

[root@rac2 ~]# more /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=rac2.aibo.com


[root@rac2 ~]# more /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
BROADCAST=192.168.2.255
HWADDR=00:0C:29:81:22:38
IPADDR=192.168.2.21
NETMASK=255.255.255.0
NETWORK=192.168.2.0
ONBOOT=yes
TYPE=Ethernet
[root@rac2 ~]#









说明:在安装时,需要和网关通信;所以在文件”/etc/sysconfig/network“和”/etc/sysconfig/network-scripts/ifcfg-eth0“里添加网关”GATEWAY=192.168.2.1“

5. 修改hosts文件

[root@rac2 ~]# more /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.


# Public
192.168.2.11    rac1.aibo.com   rac1
192.168.2.21    rac2.aibo.com   rac2
#Private

#Virtual
192.168.2.80    rac1-vip.aibo.com       rac1-vip
192.168.2.81    rac2-vip.aibo.com       rac2-vip
[root@rac2 ~]#







在”/etc/hosts“文件里的第一行”127.0.0.1       localhost.localdomain   localhost“是需要的,不要写错。
在hosts文件里,私有ip(private ip)需要公网地址,我一般用10.10.0.11/255这个网段


    
 
 

您可能感兴趣的文章:

  • CentOS 5.5遇到的问题
  • 使用Acronis True Image备份CentOS5.4遇到的问题。
  • centos 更新NVIDIA显卡驱动遇到问题,求教
  • CentOS 6.2下编译Linux 3.2.13内核遇到错误
  • Centos 6.3将Mysql 5.1.61升级为mysql 5.6.19遇到的问题及解决方式
  • centos 6 搭建vsftpd服务器,遇到错误,请高人帮忙指点
  • Centos6下安装Shell下文件上传下载rz,sz命令
  • ThinkPad E420 安装Win7 CentOS5.7 不能进入CentOS 图形化用户登录界面
  • CentOS下PHP安装完成后继续安装GD扩展库
  • 在windows 7 系统下安装了CentOS 默认进入的是CentOS如何修改?
  • 最新CentOS 7中文正式版64位下载、安装及CentOS网卡IP配置(ifconfig)(图文)
  • CentOS 5 环境下安装oracle 10g 与 rhel 5下 安装有区别吗? [散分]
  • linux/centos下安装nginx(rpm安装和源码安装)详细步骤
  • vmware 安装centos 6.0 出现问题
  • linux/centos安装nginx常见错误及解决办法
  • 我通国光盘安装了CENTOS4.4 但发现没有安装上LINUX源码 不知道 则么安装上去阿
  • CentOS安装Telnet,以root用户登陆Telnet以及CentOS的各种终端解释
  • IBM System x3400 无法安装 CentOS 6.2
  • linux/centos源码安装nginx编译配置选项参数介绍
  • 请问大家安装centos的问题
  • centos 6.0 如何安装C++编译器
  • 请问:centos 完全安装了,但是却没有DNS的nameserver命令,这怎么办啊?
  • centOS5.4与xp sp3 双系统安装后centOS5不能ping通网关
  • CentOS 6.0安装全过程图文详解
  • CentOS-5.2版 Linux系统中的apache的安装路径以及Subversion安装中的问题
  • 请教:服务器安装CentOS精简版系统,找不到硬盘
  • linux centos 下查找软件所安装的目录在哪里,用什么命令阿
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 向【steptodream】提问:你推荐的那个32位的centOs可以做oracle服务器么
  • 在Oracle vm VirtualBox下安装CentOs5.5为系统ReBoot就卡住
  • 在CentOS5.3下运行oracle10g(10.2.0.4)速度慢,硬盘读写慢
  • 新手求助~centOS5.5安装oracle10G
  • centos5.4安装oracle11g的问题
  • centos4.8安装oracle9i的jre问题!!!
  • centos5下成功安装oracle10G数据库
  • Linux CentOS 4.2下安装Oracle 10G R2详细过程
  • centos6 安装 oracle10g 报错
  • CentOS 5.4安装Oracle 10g
  • centos 5.0中成功安装Oracle10201(10g)
  • CentOS下静默安装Oracle 10.2.0.1.0
  • CentOS /Scientific /Oracle Enterprise 关于RHEL免费发行版的选择问题.
  • Linux+php+apache+oracle环境搭建之CentOS下源码编译安装PHP
  • Linux+php+apache+oracle环境搭建之CentOS下安装Apache
  • Oracle 10G2 for CentOS 5.2 安装截图详解
  • Linux+php+apache+oracle环境搭建之CentOS下安装Oracle数据库
  • CentOS 6.4下安装Oracle 11gR2详细步骤(多图)
  • CentOS 5.3 安装配置Oracle 10g 手动启动及自启动服务
  • 在 CentOS 5.4 上安装 Oracle 11g R1
  • Centos最新版6.4介绍及下载地址
  • 谁有http://centos.ustc.edu.cn/CentOS-Base.repo.5这个文件?
  • 如何在windows上远程连接centOS桌面
  • CentOS6.0版本没有CentOS5.0版本人性化
  • redhat/centos 常用信息查看命令整理
  • 有人用过centos吗?请问在centos下怎么在终端运行C语言程序或者JAVA程序?
  • python下用os.execl执行centos下的系统时间同步命令ntpdate
  • 还是centos的源问题
  • redhat linux/CentOS 6/7 关闭防火墙(iptables)命令,作用:CentOS 防火墙不关行不行?
  • 中国哪里有CentOS 5.2下载镜像?
  • CentOS yum 源设置为163的源操作步骤及配置文件参考


  • 站内导航:


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

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

    浙ICP备11055608号-3