Your Ad Here
首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 冲浪宝典 > 网络资源 > howto clean up a failed crs install
【标  题】:howto clean up a failed crs install
【关键字】:howto,clean,up,failed,crs,install
【来  源】:http://www.cublog.cn/u/18373/showart.php?id=107314

howto clean up a failed crs install

Your Ad Here
PURPOSE
The purpose of this document is to help DBA's and support analysts understand how
to clean up a failed CRS (Cluster Ready Services) install for 10g RAC.
SCOPE & APPLICATION
-------------------
 
DBA's and Support Analysts
 
 
10g RAC: How to Clean Up After a Failed CRS Install
---------------------------------------------------
 
Not cleaning up a failed CRS install can cause problems like node reboots.
Follow these steps to clean up a failed CRS install:
 
1. Run the rootdelete.sh script then the rootdeinstall.sh script from the 
$ORA_CRS_HOME/install directory.  Running these scripts should be sufficent
to clean up your CRS install.  If you have any problems with these scripts 
please open a service request.  
 
If for some reason you have to manually remove the install due to problems
with the scripts, continue to step 2:
 
2. Stop the Nodeapps on all nodes:
 
        srvctl stop nodeapps -n <node name>
 
3. Prevent CRS from starting when the node boots.  To do this issue the following
as root:
 
Sun:
 
        rm /etc/init.d/init.cssd 
        rm /etc/init.d/init.crs 
        rm /etc/init.d/init.crsd 
        rm /etc/init.d/init.evmd 
        rm /etc/rc3.d/K96init.crs
        rm /etc/rc3.d/S96init.crs
        rm -Rf /var/opt/oracle/scls_scr 
        rm -Rf /var/opt/oracle/oprocd
        rm /etc/inittab.crs 
        cp /etc/inittab.orig /etc/inittab
 
Linux:
 
        rm -f /etc/init.d/init.cssd 
        rm -f /etc/init.d/init.crs 
        rm -f /etc/init.d/init.crsd 
        rm -f /etc/init.d/init.evmd 
        rm -f /etc/rc2.d/K96init.crs
        rm -f /etc/rc2.d/S96init.crs
        rm -f /etc/rc3.d/K96init.crs
        rm -f /etc/rc3.d/S96init.crs
        rm -f /etc/rc5.d/K96init.crs
        rm -f /etc/rc5.d/S96init.crs
        rm -Rf /etc/oracle/scls_scr
        rm -f /etc/inittab.crs 
        cp /etc/inittab.orig /etc/inittab
 
HP-UX:
 
        rm /sbin/init.d/init.cssd 
        rm /sbin/init.d/init.crs 
        rm /sbin/init.d/init.crsd 
        rm /sbin/init.d/init.evmd 
        rm /sbin/rc3.d/K960init.crs
        rm /sbin/rc3.d/S960init.crs
        rm -Rf /var/opt/oracle/scls_scr 
        rm -Rf /var/opt/oracle/oprocd
        rm /etc/inittab.crs 
        cp /etc/inittab.orig /etc/inittab
 
HP Tru64:
 
        rm /sbin/init.d/init.cssd 
        rm /sbin/init.d/init.crs 
        rm /sbin/init.d/init.crsd 
        rm /sbin/init.d/init.evmd 
        rm /sbin/rc3.d/K96init.crs
        rm /sbin/rc3.d/S96init.crs
        rm -Rf /var/opt/oracle/scls_scr 
        rm -Rf /var/opt/oracle/oprocd
        rm /etc/inittab.crs 
        cp /etc/inittab.orig /etc/inittab
 
IBM AIX:
 
        rm /etc/init.cssd 
        rm /etc/init.crs 
        rm /etc/init.crsd 
        rm /etc/init.evmd 
        rm /etc/rc.d/rc2.d/K96init.crs
        rm /etc/rc.d/rc2.d/S96init.crs
        rm -Rf /etc/oracle/scls_scr
        rm -Rf /etc/oracle/oprocd
        rm /etc/inittab.crs 
        cp /etc/inittab.orig /etc/inittab
 
4. If they are not already down, kill off EVM, CRS, and CSS processes or reboot
   the node:
 
        ps -ef | grep crs      
        kill <crs pid>
        ps -ef | grep evm
        kill <evm pid>
        ps -ef | grep css      
        kill <css pid>
 
   Do not kill any OS processes, for example icssvr_daemon process !
 
5. If there is no other Oracle software running (like listeners, DB's, etc...), 
   you can remove the files in /var/tmp/.oracle or /tmp/.oracle.  Example:
 
        rm -f /var/tmp/.oracle
 
        or
 
        rm -f /tmp/.oracle
 
6. Remove the ocr.loc 
   Usually the ocr.loc can be found at /etc/oracle
 
7. Remove the CRS install location:
 
        rm -Rf <CRS Install Location>/*
 
8. De-install the CRS home in the Oracle Universal Installer
 
9. Clean out the OCR and Voting Files with dd commands.  Example:
 
        dd if=/dev/zero of=/dev/rdsk/V1064_vote_01_20m.dbf bs=8192 count=2560
        dd if=/dev/zero of=/dev/rdsk/ocrV1064_100m.ora bs=8192 count=12800
 
   If you placed the OCR and voting disk on a shared filesystem, remove them.
 
   If you are removing the RDBMS installation, also clean out any ASM disks if 
   they have already been used.
 
10.If you would like to re-install CRS, follow the steps in the RAC Installation manual.
 

 

Oracle数据库日常维护手册:【上一篇】
在RHEL AS 3上安装Oracle10g v2手册:【下一篇】
【相关文章】
  • Multiboot with GRUB Mini-HOWTO
  • 安装Arch手记Tips(updating)
  • Asp.net 2.0 用 FileUpload 控件实现多文件上传 用户控件(示例代码下载)
  • VERITAS NetBackup的安装
  • oracle10g_linux_install_config
  • portupgrade命令参数
  • 在Redhat Linux AS 4.3中安装ACE的过程(Install ACE for RHAS Linux 4.3)
  • 关于msLiveUpdate.exe
  • re: Google发布免费的SketchUp
  • 一千个 使用VS05 的理由 (423) Build/Rebuild/Clean Selection
  • 【随机文章】
  • 最近比较烦。。。。。。
  • The Solaris安全FAQ
  • 另类商业模式助 Linux 挑战微软
  • linux启动服务解释大全
  • 网吧组网 光纤接入与ADSL接入的较量
  • glRasterPos和glReadPixels
  • ASPACK V2.12外壳分析
  • init进程和inittab文件简要说明
  • Java操作XML文件 dom 篇
  • 面向对象设计的新视角
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 bbb软讯网络 All Rigths Reserved.