cetnos 6.7 安裝 oracle 11詳解

 

CentOS 6.7下Oracle 11g安裝詳解html

 

1. 安裝環境

Linux服務器:CentOS 6.7 64位linux

Oracle數據庫版本:Oracle 11gR2 64位c++

 

2. 配置修改及參數優化

注意:在Root用戶下執行如下步驟sql

 

2.1 修改用戶的SHELL的限制/sershell

編輯/etc/security/limits.conf文件,輸入命令:vi /etc/security/limits.conf,按i鍵進入編輯模式,將下列內容加入該文件:數據庫

oracle  soft    nproc    2047windows

oracle  hard    nproc    16384bash

oracle  soft    nofile    1024服務器

oracle  hard    nofile    65536網絡

編輯完成後按Esc鍵,輸入「:wq」存盤退出

 

2.2 修改/etc/pam.d/login 文件

輸入命令:vi /etc/pam.d/login,按i鍵進入編輯模式,將下列內容加入該文件:

session  required    /lib/security/pam_limits.so

session  required    pam_limits.so

 

2.3 優化linux內核

修改/etc/sysctl.conf文件,輸入命令: vi  /etc/sysctl.conf ,按i鍵進入編輯模式,將下列內容加入該文件:

kernel.shmall = 2097152

kernel.shmmax = 2147483648

fs.file-max = 6815744

fs.aio-max-nr = 1048576

kernel.shmmni = 4096

kernel.sem = 250 32000 100 128

net.ipv4.ip_local_port_range = 9000 65500

net.core.rmem_default = 4194304

net.core.rmem_max = 4194304

net.core.wmem_default = 262144

net.core.wmem_max = 1048576

編輯完成後按Esc鍵,輸入「:wq」存盤退出;而後執行:sysctl -p使之當即生效。

 

2.4 編輯/etc/profile文件

將下列內容加入該文件。

if [ $USER = "oracle" ]; then

if [ $SHELL = "/bin/ksh" ]; then

  ulimit -p 16384

  ulimit -n 65536

else

  ulimit -u 16384 -n 65536

fi

fi

編輯完成後按Esc鍵,輸入「:wq」存盤退出;而後執行source /etc/profile使之生效。

 

2.5 建立oracle相關用戶和組

2.5.1 建立用戶組

輸入命令:

groupadd  oinstall

groupadd  dba

 

2.5.2 建立Oracle用戶和密碼

建立用戶輸入命令:

useradd -g oinstall -g dba -m oracle

設置密碼命令:

echo "DBA.oracle.729"|passwd --stdin oracle

或者

passwd

而後會讓你輸入密碼,密碼任意輸入2次,但必須保持一致,回車確認

 

2.6 建立數據庫軟件目錄和數據文件存放目錄

目錄的位置,根據本身的狀況來定,注意磁盤空間便可,這裏我把其放到oracle用戶下,例如:

mkdir /home/oracle/app

mkdir /home/oracle/app/oracle

mkdir /home/oracle/app/oradata

mkdir /home/oracle/app/oracle/product

 

2.7 更改目錄屬主爲Oracle用戶全部

輸入命令:

chown -R oracle. /home/oracle/app

 

2.8 配置oracle用戶的環境變量

須要切換到新建立的oracle用戶下,輸入su – oracle  ,而後直接在輸入 vi .bash_profile,按i編輯 .bash_profile,進入編輯模式,增長如下內容:

umask 022

export ORACLE_BASE=/home/oracle/app

export ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/dbhome_1

export ORACLE_SID=orcl

export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib64

編輯完成後按Esc鍵,輸入「:wq」存盤退出,並source .bash_profile 立刻生效

 

 

3. 安裝oracle數據依賴包

3.1 yum安裝

軟件環境: 

yum groupinstall  "Compatibility libraries" "Base" "Development tools" "debugging Tools"  "desktop" -y

yum groupinstall "Desktop"  -y
yum groupinstall "X Window System"  -y
yum groupinstall "KDE Desktop"  -y

yum install -y xorg-x11-utils

yum -y install binutils compat-libstdc++-33 elfutils-libelf     elfutils-libelf-devel glibc glibc-common glibc-devel gcc gcc-c++ libaio-devel   libaio libgcc libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel     pdksh numactl-devel glibc-headers

安裝完成以後能夠用rpm -qa 加上包名檢查一下是否安裝成功。

 

3.2 安裝pdksh用來支持oracle圖形化安裝

此處的版本爲pdksh-5.2.14

到Linux公社資源站下載:

-------------------------------分割線------------------------------------------

免費下載地址在 http://linux.linuxidc.com/

用戶名與密碼都是www.linuxidc.com

具體下載目錄在 /2016年資料/6月/6日/Linux 安裝 Oracle 11g R2/

下載方法見 http://www.linuxidc.com/Linux/2013-07/87684.htm

-------------------------------分割線------------------------------------------

解壓:

unzip pdksh-5.2.14.zip

有32位、64位根據系統選擇安裝吧

安裝:

rpm -ivh pdksh-5.2.14-30.x86_64.rpm

 

3.3 安裝xclock工具

命令:

yum install xclock -y

 

3.4 檢驗圖形化

輸入xclock後,桌面會出現鐘錶界面,及表示成功,不然不能圖形化界面安裝oracle

 

 

4. Oracle安裝

4.1 上傳oracle11g安裝包xcl

經過rz,winscp或其餘ftp工具均可,過程略

[root@localhost tools]# pwd

/data/tools

[root@localhost tools]# ll linux.x64_11gR2_database_*

-rw-r--r-- 1 oracle dba 1239269270 Dec  6  2014 linux.x64_11gR2_database_1of2.zip

-rw-r--r-- 1 oracle dba 1111416131 Dec  6  2014 linux.x64_11gR2_database_2of2.zip

[root@localhost tools]#

 

4.2 解壓縮oracle安裝包

輸入命令:

unzip  linux.x64_11gR2_database_1of2.zip

unzip  linux.x64_11gR2_database_2of2.zip

解壓完成後 cd 進入其解壓後的目錄/data/tools/database,看到會文件是兩個文件解壓後合併的文件。

輸入命令:

cd  database

使用ls命令能夠查看解壓後database所包含的文件,以下圖:

[root@localhost database]# ls

doc  install  response  rpm  runInstaller  sshsetup  stage  welcome.html

[root@localhost database]#

 

4.3 執行安裝

在window系統上:

要求機器上安裝Xmanager Enterprise 5,並運行

Xmanager - Passive

 

xshell開啓轉發X11鏈接

 

回到linux命令行

su - oracle

 export DISPLAY=192.168.56.1:0.0 #這裏引入的IP是PC的IP

./runlnstaller

進入oracle安裝界面

windows出現這個界面,表明成功了一半

取消I wish to receive...Support選項,而後Next

 

選擇Install database soft only,而後Next

 

選擇single instance database installation

 

選擇語言English【根據本身的需求,也能夠導入全部語言】

 

選擇Enterprise edition

 

默認Next

 

默認Next

 

默認Next

 

 

勾選Ignore All後Next

 

 

選擇Finish

 

選擇OK

【安裝完成後,系統會提示你須要用root權限執行2個shell腳本。(不用關閉彈出的窗口)按照其提示的路徑,找到其所在的位置,

如:個人就在/home/oracle/app/oraInventory/orainstRoot.sh

和/home/oracle/app/oracle/product/11.2.0/dbhome_1/root.sh】

 

選擇Close關閉

 

窗口執行腳本root.sh:

sudo su -

cd /home/oracle/app/oracle/product/11.2.0/dbhome_1/

sh root.sh

過程以下:

sh root.sh

 

窗口執行腳本:orainstRoot.sh

sudo su -

cd /home/oracle/app/oraInventory/orainstRoot.sh

sh orainstRoot.sh

5. 建立數據庫

在Oracle用戶的圖形界面oracle用戶中,新開一個終端,直接輸入:dbca會彈出以下界面。

su - oracle

dbca

 

直接Next

 

選擇Create a Database後Next

 

 選擇Custom Database後Next

 

取消Configure...Manger後Next

 

 

設置密碼【本身設置,兩次同樣(截圖上的測試機隨機寫的:DBA.oracle.729)】

 

 

數據庫存放位置,採用默認

 

 

 

取消Specify...Area(即不指定快速恢復和歸檔),而後Next

 

 

 

 

 

設置內存大小【默認推薦大小,也能夠根據需求自行設定,在Sizing中也能夠設定】

 

 

 

選擇字符類型ZHS16GBK-GBK 16-bit Simplified Chinese後Next

 

打開Read Log Groups選項

 

 

大小此處採用默認【能夠根據需求設定】

 

 

 

 

 

 

 

此時能夠用sqlplus鏈接測試。

 

未配置監聽服務前:

[oracle@jw-fabu ~]$ lsnrctl status

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 14-NOV-2016 15:21:09

Copyright (c) 1991, 2009, Oracle. All rights reserved.

Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
TNS-12541: TNS:no listener
TNS-12560: TNS:protocol adapter error
TNS-00511: No listener
Linux Error: 111: Connection refused

 

 

6. 配置監聽及本地網絡服務

在Oracle用戶的圖形界面oracle用戶中,新開啓一個終端,輸入命令netca會彈出以下界面:

sudo - oracle

netca

 

步驟詳見以下系列截圖:

 

 

 

 

 

 

 

 

 

 

[oracle@jw-fabu ~]$ netca

Oracle Net Services Configuration:
Configuring Listener:LISTENER
Listener configuration complete.
Oracle Net Listener Startup:
Running Listener Control:
/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin/lsnrctl start LISTENER
Listener Control complete.
Listener started successfully.
Default local naming configuration complete.
Created net service name: trs
Oracle Net Services configuration successful. The exit code is 0

 

 

配置監聽服務後:

 

至此安

[oracle@jw-fabu ~]$ lsnrctl status

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 14-NOV-2016 15:24:36

Copyright (c) 1991, 2009, Oracle. All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=jw-fabu)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date 14-NOV-2016 15:22:55
Uptime 0 days 0 hr. 1 min. 41 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /home/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
Listener Log File /home/oracle/app/diag/tnslsnr/jw-fabu/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=jw-fabu)(PORT=1521)))
Services Summary...
Service "TRS" has 1 instance(s).
Instance "TRS", status READY, has 1 handler(s) for this service...
Service "TRSXDB" has 1 instance(s).
Instance "TRS", status READY, has 1 handler(s) for this service...
The command completed successfully

裝結束

 

7. 鏈接測試

SQL*Plus: Release 11.2.0.1.0 Production on Mon Nov 14 15:25:22 2016

Copyright (c) 1982, 2009, Oracle. All rights reserved.

SQL> 

[oracle@jw-fabu ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Mon Nov 14 15:26:00 2016

Copyright (c) 1982, 2009, Oracle. All rights reserved.

Connected to an idle instance.

SQL> show user;USER is "SYS"SQL> exit

相關文章
相關標籤/搜索