oracle817在AIX5L安裝過程中碰到的幾個問題

seagull76發表於2008-03-24
有個客戶的專案,需要在aix5.2上安裝oracle817,同事裝的過程中遇到了一些問題,我幫手解決了,下面總結一下:
1)在執行rootpre.sh過程中,有警告:"crash: not found"
這個警告可以忽略,如果要避免這個警告,可以執行下面的動作:
the warning can be avoided by creating the
following script and renaming it to "/usr/sbin/crash":

#!/bin/ksh
read input
if [ X"$input" = Xle ]; then
echo lke | /usr/sbin/kdb |
/usr/bin/awk '/^ *[0-9]+/ {printf("LoadList entry at 0x%sn Name:
%snn",$2,$6)}
fi

2)執行runinstaller時,報錯:

$
Error in writing to directory /tmp/OraInstall. Please ensure that this directory
is writable and has atleast 25 MB of disk space. Installation cannot continue.
: Bad file number

解決辦法:確認/tmp許可權是777,同時在runinstaller之前清空/tmp/OraInstall目錄.

3)安裝完成8.1.7.0後,要打補丁到8.1.7.4,按照官方文件的說法,在$ORACLE_HOME/bin目錄下執行runInstaller,但找不到這個命令。

解決辦法:直接在光碟中執行runInstaller,然後選擇8.1.7.4patch set的product.jar就可以了。

4)建立完庫後,啟動監聽失敗,報下面的錯誤:

TNS-12538: TNS:no such protocol adapter
TNS-12560: TNS:protocol adapter error
TNS-00508: No such protocol adapter

解決辦法:

遮蔽掉listener中的ipc協議。
關閉所有例項,在目錄 $ORACLE_HOME/NETWORK/LIB下
a. make -f ins_net_client.mk ntcontab.o
在作這一步時,提示我編譯出錯,我檢查了一下,發現$ORACLE_HOME下沒有temp目錄,而環境變數tmp要求指向該目錄,我就建了這個目錄,將其屬性改為777。啟動例項,嘗試啟動listener,還是不成功。關閉例項,編譯倒是成功了。
b. make -f ins_net_server.mk install
這一步成功了。
c. make -f ins_client_server.mk install
這一步不成功,告訴我ins_client_server.mk找不到。我在目錄下也沒有發現ins_client_server.mk。

最後,輸入以下命令
$ adapters
Installed Net8 Tranport Protocols are:

IPC
TCP/IP
BEQueath
SSL
RAW

Installed Net8 Naming Adapters are:

TNSnames
OracleNames
LDAP
Hostname

Installed Oracle Advanced Security option/Security products are:

$ adapters tnslsnr
Executable does not exist! Goodbye...

然後,啟動例項和listener,可以將listener啟動起來。加上ipc方式,也可啟起來。

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8861952/viewspace-1034684/,如需轉載,請註明出處,否則將追究法律責任。

相關文章