安装oracle 10.2.0.1.0 on aix 基本和在hpux上差不多
由于原来已经有了oracle 11gr1 rac,所以需要先删除,思路如下:
=====================================================
how to uninstall rac and crs 11gr1
=====================================================
check status:
echo $ORA_CRS_HOME
how to check crs status
cd $ORA_CRS_HOME/bin
./crs_stat
uninstall rac db;
uninstall asm;
uninstall crs;
ps -ef|grep crs
ps -ef|grep ora
ps -ef|grep asm
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
ps -ef | grep crs
kill
ps -ef | grep evm
kill
ps -ef | grep css
kill
rm -f /var/tmp/.oracle
or
rm -f /tmp/.oracle
安装是注意由于是用了ksh所以环境变量设置有所不同
==================================================
install oracle on aix 10.2.0.1.0
==================================================
ksh,is using .profile and .bashrc
例外遇到了oracle bug
Bug 6410880 - SOME ERRORS OCCUR IN GENNTTAB WHEN THE DIRECTORY SET TO $TMPDIR DOES EXIST
解决方法是:
=========== WORKAROUND ===========
1. Ignore this error during the installation
2. After the installation is over, ensure that the missing directory has been created
3. "$ORACLE_HOME/bin/relink all" to ensure all targets are remade properly
好了,oracle在hpux和aix都装好了,下面就是迁移的活了,有exp/imp和物化视图两个方面,
阅读(1717) | 评论(0) | 转发(0) |