程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Fedora 13 下安裝 Oracle 11g

Fedora 13 下安裝 Oracle 11g

編輯:Oracle數據庫基礎
有幾個包默認沒有,要安裝,如(這一步可在安裝時再進行,因為Oracle在自檢的時候會提示什麼包沒有,這樣就不用自己一個個去查了)
yum install nuMactl-devel
yum install sysstat
yum install unixODBC
yum install unixODBC-devel

在這一步的時候,可以增加ora目錄和改權限,反正安裝是會用到,不然會提示出錯。 Create the directorIEs in which the Oracle software will be installed:
mkdir -p /u01/app/oracle/product/11.2.0/db_1
chown -R Oracle:oinstall /u01
chmod -R 775 /u01
mkdir /home/ora
chown Oracle:oinstall /home/ora
問題解決 1. 安裝檢查時提示pdksh5.2.14沒找到,可忽略。網上查了一下說是redhat自帶的,但fedora沒有安裝。也不用強制安裝,會有沖突。有ksh代替就可。
2. 安裝檢查還說內存檢查的問題,我的內存是1G。不過也沒關系,忽略過去,繼續安裝就好。
3. INFO: /usr/bin/ld: /oracle/product/11.2.0/db_1/sysman/lib//libnmectl.a(nmectlt.o): undefined reference to symbol 'B_DestroyKeyObject' /usr/bin/ld: note: 'B_DestroyKeyObject' is defined in DSO /oracle/product/11.2.0/db_1/lib/libnnz11.so so try adding it to the linker command line 參考 http://forums.Oracle.com/forums/thread.JSPa?threadID=1091616&tstart=0 解決方法 When you start to install with ./runInstaller, run in another terminal window (as root) 
ls $Oracle_HOME/sysman/lib/ins_emagent.mk

At first this will produce an error, as the installer wont have created this file yet.
Once the file exists, do:
vi $Oracle_HOME/sysman/lib/ins_emagent.mk
Search for the line 
$(MK_EMAGENT_NMECTL)
Change it to:
$(MK_EMAGENT_NMECTL) -lnnz11

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved