国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > Oracle > 正文

在RHEL AS 3 上安裝Oracle10g 參考手冊(2)

2024-08-29 13:37:04
字體:
來源:轉載
供稿:網友
$ sh /u/install/runInstaller
假如不能出現安裝畫面,查看本文后面的FAQ。
非常值得稱道的是,10g 的安裝相比以前的多了一個Checking Operating system
certification 的步驟。非凡實用。
安裝文件會自動檢測所需的條件。假如有不符合的地方,安裝程序會報告給你.并會給出
具體原因。大大減少了出錯的可能.下面是檢查成功輸出的內容:
Checking operating system certification
EXPected result: One of redhat-2.1,redhat-3,Unitedlinux-1.0
Actual Result: redhat-3
Check complete. The overall result of this check is: Passed
==============================================
Checking kernel parameters
Checking for VERSION=2.4.9.25; found VERSION=2.4.21. Passed
Checking for shmall=2097152; found shmall=2097152. Passed
Checking for shmseg=10; found shmseg=4096. Passed
Checking for semmsl=250; found semmsl=250. Passed
Checking for semmni=128; found semmni=128. Passed
Checking for filemax=65536; found filemax=65536. Passed
Checking for shmmni=4096; found shmmni=4096. Passed
Checking for semmns=32000; found semmns=32000. Passed
Checking for semopm=100; found semopm=100.Passed
Checking for shmmin=1; found shmmin=1. Passed
Checking for shmmax=2147483648; found shmmax=2147483648. Passed
Check complete. The overall result of this check is: Passed
==============================================
Checking recommended operating system packages
Checking for make-3.79; found make-3.79.1-17. Passed
Checking for binutils-2.11.90.0.8-12; found binutils-2.14.90.0.4-26. Passed
Checking for gcc-2.96; found gcc-3.2.3-20. Passed
Checking for openmotif-2.1.30-11; found openmotif-2.2.2-16. Passed
Check complete. The overall result of this check is: Passed
==============================================
Checking recommended glibc version
Expected result: 2.2.4.31.7
Actual Result: 2.3.2.95.3
Check complete. The overall result of this check is: Passed
==============================================
=====================
Validating Oracle_BASE location (if set)
Check complete. The overall result of this check is: Passed
==============================================
其他的步驟比較清楚,不再贅述.
最后系統會提示你運行root.sh 文件.按照提示做即可.
三FAQ (在Linux 平臺安裝Oracle 比較常見)
3.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 +
(要注重這樣會有安全上的隱患)
3.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.3 用IE 登錄Linux 服務器上的em 出現亂碼
在Linux(Unix) 環境下成功安裝了Oracle 10g,從windows 下用IE 瀏覽器登錄10g 的
em, 按鈕是"口口"這樣的方框.
解決辦法:
參考http://www.dbanotes.nethttp://oracle.chinaitlab.com/Orac....PRoperties.htm
或者是參考這個http://www.linuxsir.org/bbs/showthr...&threadid=98591
后者比較徹底,前者比較"Quick & Dirty ".
3.4 創建數據庫的時候出現ORA-03113 的錯誤
解決辦法:
查看核心參數是否調整正確.參考http://www.dbanotes.nethttp://oracle.chinaitlab.com/ORA-03113.htm
3.5 RedHat 9 / FC1 等系統10g 不支持如何安裝?
解決辦法:
在10g 不支持的Linux 發行版上安裝10g 的解決方法

1). 運行runInstaller -ignoreSysPrereqs,這樣會跳過檢查
2). 摘自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.nethttp://oracle.chinaitlab.com/10G-Beta-Install-Bug.htm
同樣的思路,我們可以修改Oracle 的install/oraparam.ini 文件達到目的
3.6 如何關掉那些oCSSd.bin 進程?
解決辦法:
編輯/etc/inittab 文件(做好備份)
注釋掉這一行:
h1:3:respawn:/etc/init.d/init.cssd run >/dev/null 2>&1
四參考信息
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.comOracle Database Quick Installation Guide 10 g Release 1 (10.1) for Linux x86
http://download-west.oracle.com/doc...0813_01/toc.htm
Oracle Database Installation Guide 10 g Release 1 (10.1) for UNIX Systems
http://download-west.oracle.com/doc...0811_02/toc.htm
DBAnotes.net 我的站點包括不少和Oracle 有關的信息


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 塔城市| 岳西县| 海原县| 兴城市| 越西县| 永登县| 上犹县| 建宁县| 康乐县| 灵璧县| 涟水县| 香格里拉县| 赤城县| 平定县| 杭锦后旗| 晋江市| 威远县| 海丰县| 江北区| 伊川县| 五莲县| 福州市| 永吉县| 班玛县| 合阳县| 六安市| 云梦县| 哈尔滨市| 阜康市| 体育| 迁西县| 颍上县| 郁南县| 个旧市| 永新县| 太谷县| 公安县| 土默特右旗| 泾川县| 池州市| 涟水县|