使用應答檔案安裝Oracle11g資料庫(RedHat6.5)

neverinit發表於2017-07-21

注:如果實在無法連上圖形化介面,可選擇該方案。

安裝之前:

開啟XShell,以root使用者身份建立/oraInventory資料夾。

  1. [root@Pet ~]# mkdir /oraInventory
  2. [root@Pet ~]# cd /
  3. [root@Pet /]# chown -R oracle:oinstall oraInventory
  4. [root@XLJ181 ~]# export DISPLAY=:0.0
  5. [root@XLJ181 ~]# xhost +
  6. access control disabled, clients can connect from any host

(在/etc/hosts檔案中加入使用者)如下:


1.找到oracle資料庫對應的應答檔案。


2.切換Oracle使用者,修改對應的應答檔案內容並執行相關命令

一、db_install.rsp 安裝Oracle資料庫軟體

先進入/Oracle_11g/database目錄

修改response檔案的如下選項:

oracle.install.option=INSTALL_DB_SWONLY
UNIX_GROUP_NAME=oinstall
INVENTORY_LOCATION=/oraInventory
ORACLE_HOME=/Oracle_11g/oracle
ORACLE_BASE=/Oracle_11g
oracle.install.db.InstallEdition=EE
oracle.install.db.DBA_GROUP=dba
oracle.install.db.OPER_GROUP=oinstall
DECLINE_SECURITY_UPDATES=true
然後執行命令: ./runInstaller -ignoreSysPrereqs -ignorePrereq  -silent -responseFile /Oracle_11g/database/response/db_install.rsp -debug

注意 

1.-ignoreSysPrereqs  linux上必須加上此項
2.靜默安裝,如果發現錯誤 “SEVERE: Email Address Not Specified .......”,需要設定:

                DECLINE_SECURITY_UPDATES=true

執行後出現如下提示:

安裝到這裡會有兩個指令碼需要用root使用者執行的。開啟XShell,以root使用者執行這兩個指令碼。

[root@Pet ~]# /oraInventory/orainstRoot.sh

[root@Pet ~]# /Oracle_11g/oracle/root.sh

待指令碼執行完後,Oracle 11g R2資料庫軟體已經安裝完成。


二、netca.rsp  配置監聽程式

[oracle@XLJ182 database]$ /Oracle_11g/oracle/bin/netca -silent -responseFile /Oracle_11g/database/response/netca.rsp

執行後,出現如下提示:


  1. Parsing command line arguments:
  2.     Parameter "silent" = true
  3.     Parameter "responsefile" = /Oracle_11g/database/response/netca.rsp
  4. Done parsing command line arguments.
  5. Oracle Net Services Configuration:
  6. Profile configuration complete.
  7. Oracle Net Listener Startup:
  8.     Running Listener Control:
  9.       /Oracle_11g/oracle/bin/lsnrctl start LISTENER
  10.     Listener Control complete.
  11.     Listener started successfully.
  12. Listener configuration complete.
  13. Oracle Net Services configuration successful. The exit code is 0


如果此處出現類似異常,需要用root許可權使用者登入伺服器,在/etc/hosts檔案中新增:

IP  hostname


 

三、dbca.rsp  建立資料庫

修改response檔案的如下選項:

GDBNAME = "cams"
SID = "cams"
SYSPASSWORD    = "**********"
SYSTEMPASSWORD = "**********"
SYSMANPASSWORD = "**********"
DBSNMPPASSWORD = "**********"
CHARACTERSET        = "UTF8"                  --字符集
NATIONALCHARACTERSET   =   "UTF8"   --國家字符集,預設值

然後執行命令: /Oracle_11g/oracle/bin/dbca -silent -cloneTemplate -responseFile /Oracle_11g/database/response/dbca.rsp


注意

如果安裝期間出現如下錯誤:

Initializing Java Virtual Machine from /tmp/OraInstall2014-11-27_08-53-23AM/jdk/jre/bin/java. Please wait...

./runInstaller: line 92: 11535 Segmentation fault      (core dumped) $CMDDIR/install/.oui $*

執行:


  1. [oracle@XLJ182 database]$ cat runInstaller | tail -n +80 | head -n 50
  2.     PATH=/usr/bin:/usr/ccs/bin:$CMDDIR/install
  3.     export PATH
  4. fi
  5. # Determine whether there is an existing CRS or not.
  6. # Local is value of local_only in ocr.loc.
  7. # False means there is an existing CRS installation on the system.
  8. if [ -r $OCR_LOC ]; then
  9.     LOCAL=`$AWK -F= /$LOCALONLY/'{print $2}' $OCR_LOC |\
  10.            $SED 'y/aeflrstu/AEFLRSTU/'`
  11. fi
  12. case "$BUNDLE" in
  13. db)
  14. # One-click: only if there is no cmd line argument and it's not on CRS node
  15. if [ $# -gt 0 -o "$LOCAL" = "FALSE" -o \
  16.      ! -r $CMDDIR/install/oneclick.properties ]; then
  17.     $CMDDIR/install/.oui $*
  18. else
  19.     $CMDDIR/install/.oui -oneclick
  20. fi
  21. ;;
  22. client)
  23.     $CMDDIR/install/.oui $* CLUSTER_NODES={}
  24. ;;
  25. crs)
  26.     $CMDDIR/install/.oui $* -formCluster
  27. ;;
  28. dv)
  29.     $CMDDIR/install/.oui $* -oneclick
  30. ;;
  31. dbbundle)
  32.     for arg in "$@"
  33.         do
  34.             arg=`echo $arg | $SED 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/


92行的程式碼為:$CMDDIR/install/.oui $* -oneclick

執行:


  1. [oracle@XLJ182 tmp]$ /Oracle_11g/database/install/.oui $* -oneclick
  2. Starting Oracle Universal Installer...
  3. Checking Temp space: must be greater than 120 MB. Actual 30005 MB Passed
  4. Checking swap space: must be greater than 150 MB. Actual 3967 MB Passed
  5. Checking monitor: must be configured to display at least 256 colors
  6.     >>> Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<<
  7. Some requirement checks failed. You must fulfill these requirements before
  8. continuing with the installation,
  9. Continue? (y/n) [n] n
  10. User Selected: No
  11. Exiting Oracle Universal Installer, log for this session can be found at /tmp/OraInstall2014-11-27_09-23-40AM/installActions2014-11-27_09-23-40AM.log


解決方案:


  1. [oracle@XLJ182 tmp]$ su - root
  2. [root@XLJ182 ~]# export DISPLAY=:0.0
  3. [root@XLJ182 ~]# xhost +
  4. access control disabled, clients can connect from any host
  5. [oracle@XLJ182 oracle]$ /Oracle_11g/database/install/.oui $* -oneclick
  6. Starting Oracle Universal Installer...
  7. Checking Temp space: must be greater than 120 MB. Actual 29995 MB Passed
  8. Checking swap space: must be greater than 150 MB. Actual 3967 MB Passed
  9. Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
  10. Preparing to launch Oracle Universal Installer from /tmp/OraInstall2014-11-27_09-43-13AM. Please wait ...


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

相關文章