最后系统会提示你运行root.sh文件.按照提示做即可.
faq (在linux平台安装oracle比较常见)
1. 不能启动安装界面.运行runinstaller提示信息类似如下:
xlib:connection to "localhost:0.0" refused by server
xlib:client is not authorized to connect to server
exception in thread "main" java.lang.internalerror:can't connect to x11 window server using "localhost:0.0"
at .......
解决办法: 设定你的display环境参数.# export display= your_ipaddress :0.0把your_ipaddress换成你的ip.或者
用root简单的执行一下# xhost + (要注意这样会有安全上的隐患)
2.安装界面显示很多"口口"样子的乱码
解决办法:查看locale输出
# locale
lang=en_us.utf-8
lc_ctype=zh_cn.gb18030
lc_numeric="en_us.utf-8"
lc_time="en_us.utf-8"
lc_collate="en_us.utf-8"
lc_monetary="en_us.utf-8"
lc_messages="en_us.utf-8"
lc_paper="en_us.utf-8"
lc_name="en_us.utf-8"
lc_address="en_us.utf-8"
lc_telephone="en_us.utf-8"
lc_measurement="en_us.utf-8"
lc_identification="en_us.utf-8"
lc_all=
执行#export lc_ctype=en_us.utf-8 然后重新调用安装程序.
3. 用ie登录linux服务器上的em出现乱码
在linux(unix) 环境下成功安装了oracle 10g,从windows下用ie浏览器登录 10g 的em, 按钮是"口口"这样的方框.
解决办法: 参考 http://www.dbanotes.net/oracle/oracle-10g-font.properties.htm 或者是参考这个 http://www.linuxsir.org/bbs/showthread.php?s=&threadid=98591 后者比较彻底,前者比较"quick & dirty ".
4.创建数据库的时候出现ora-03113的错误
解决办法: 查看核心参数是否调整正确.参考http://www.dbanotes.net/oracle/ora-03113.htm
5. redhat 9 / fc1等系统10g不支持如何安装?
解决办法:在10g不支持的linux发行版上安装10g的解决方法
1). 运行runinstaller -ignoresysprereqs,这样会跳过检查
2). 摘自 http://www.puschitz.com/修改/etc/redhat-release文件:
#su - root
#cp /etc/redhat-release /etc/redhat-release.backup
#cat > /etc/redhat-release << eof
red hat enterprise linux as release 3 (taroon)
eof
安装完毕,执行如下操作:
#su - root
#cp /etc/redhat-release.backup /etc/redhat-release
3). http://www.dbanotes.net/oracle/10g-beta-install-bug.htm
同样的思路,我们可以修改oracle 的install/oraparam.ini文件达到目的
6 如何关掉那些 ocssd.bin 进程?
解决办法:编辑/etc/inittab文件(做好备份)
注释掉这一行:
h1:3:respawn:/etc/init.d/init.cssd run >/dev/null 2>&1 </dev/null
参考信息
werner puschitz 的 10g 安装指南 http://www.puschitz.com/installingoracle10g.shtml
werner puschitz 的站点的文章很翔实,如果您遇到了本文没有说清的问题,可以去看看那里.本文借鉴了该站点不少内容.
itpub论坛10g版块kamus等的大作http://www.itpub.net/forumdisplay.php?s=&forumid=70
关于核心参数等信息请查找 google http://www.google.com/
oracle database quick installation guide 10 g release 1 (10.1) for linux x86
http://download-west.oracle.com/docs/html/b10813_01/toc.htm
oracle database installation guide 10 g release 1 (10.1) for unix systems
http://download-west.oracle.com/docs/html/b10811_02/toc.htm