作者:南塘所有的经筒 | 来源:互联网 | 2023-08-30 13:33
1.进度条不动问题 Imetaproblem.Installationhangat65%,itseemsthatrelatedwith“ons.config.tmp”.Afterc
1.进度条不动问题
I met a problem. Installation hang at 65%, it seems that related with “ons.config.tmp”.
After checking the error log of installation in$ORACLE_BASE/oraInventory/logs(/opt/oracle/oraInventory/logs is in my case), I found tons of this message:
“Caught UnknownHostException: bogon: bogon”
I guess this may cause by the hostname issue, so issue hostname
[oracle@localhost logs]$ hostname
bogon
After change hostname to localhost from bogon as root, problem seems to be resolved.
[root@localhost logs]# hostname localhost
[root@localhost logs]# hostname
localhost
After change hostname, the installation process pass very quickly.
2.
error in invoking target ntcontab.o of makefile
在安装的时候报上面的错误,经过查找,发现是gcc-3.4.6-9和gcc-c++-3.4.6-9两个包没有装好。
解决办法:
1. rpm -e gcc-3.4.6-9
提示gcc-c++-3.4.6-9依赖gcc-3.4.6-9这个包
2. rpm -e gcc-c++-3.4.6-9
成功;
3. rpm -e gcc-3.4.6-9
成功;
4. cdrom->Redhat/rpms->运行gcc-3.4.6-9.i386.rpm和gcc-c++-3.4.6-9.i386.rpm
成功;
5. 在oracle安装报错的提示界面选择retry,这个错误解决了!