更新時(shí)間:2019年12月11日17時(shí)53分 來源:傳智播客 瀏覽次數(shù):
一、前言
本次實(shí)施內(nèi)容是,oracle單實(shí)例系統(tǒng)文件安裝,操作系統(tǒng)為CentOS 6.9,數(shù)據(jù)庫版本11.2.0.4。
ip | 主機(jī)名 | 數(shù)據(jù)庫實(shí)例 | ORACLE_SID |
10.1.1.1 | heima.itcast.cn | ora11g | ora11g |
二、oracle軟件安裝
1、以下用root賬號操作
1.1 配置本地yum源
Yum(全稱為 Yellow dog Updater, Modified)是一個在Fedora和RedHat以及SUSE、CentOS中的Shell前端軟件包管理器。基於RPM包管理,能夠從指定的服務(wù)器自動下載RPM包并且安裝,可以自動處理依賴性關(guān)系,并且一次安裝所有依賴的軟體包,無須繁瑣地一次次下載、安裝。推薦了解黑馬程序員linux云計(jì)算+運(yùn)維開發(fā)課程。
·掛載鏡像到本地空目錄
[root@heima ~]# mkdir /mnt/cdrom
[root@heima ~]# mount -o ro /dev/sr0 /mnt/cdrom
·創(chuàng)建配置文件
[root@heima ~]# cat /etc/yum.repos.d/local.repo
[local]
name=local yum
baseurl=file:///mnt/cdrom
enabled=1
gpgcheck=0
說明:如果只配置本地yum源,那可以刪除/etc/yum.repos.d/目錄下Centos自帶的所有文件,然后自己創(chuàng)建以.repo結(jié)尾文件即可,內(nèi)容如上。
·創(chuàng)建yum緩存
[root@heima ~]# yum clean all
[root@heima ~]# yum makecache
1.2 安裝所需依賴包
[root@heima ~]# yum -y install compat-libstdc++-33 libaio-devel elfutils-libelf-devel
注意:在后面安裝軟件的時(shí)候可以再看需要安裝哪些包,然后裝上就行
1.3 創(chuàng)建用戶組和用戶(具體看要求決定ID號)
[root@heima ~]# groupadd -g 1000 oinstall
[root@heima ~]# groupadd -g 1001 dba
[root@heima ~]# useradd -u 1000 -g oinstall -G dba oracle
[root@heima ~]# id oracle
uid=1000(oracle) gid=1000(oinstall) groups=1000(oinstall),1001(dba)
[root@heima ~]# echo oracle|passwd --stdin oracle
Changing password for user oracle.
passwd: all authentication tokens updated successfully.
1.4 創(chuàng)建相應(yīng)數(shù)據(jù)目錄(安裝和數(shù)據(jù)目錄)
[root@heima ~]# mkdir -p /u01/app/{oracle,oradata,oraInventory}
[root@heima ~]# chown -R oracle.oinstall /u01/app/
[root@heima ~]# chmod -R 775 /u01/app/*
1.5 修改oracle用戶資源限制
[root@heima ~]# cat >> /etc/security/limits.conf <<EOF
> oracle soft nproc 2047
> oracle hard nproc 16384
> oracle soft nofile 1024
> oracle hard nofile 65536
> EOF
[root@heima ~]# grep 'limit' /etc/pam.d/system-auth
session required pam_limits.so
1.6 配置系統(tǒng)資源限制(內(nèi)核參數(shù))
[root@heima ~]# cat >> /etc/sysctl.conf << EOF
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 4294967295
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048586
EOF
說明:以上是參考值,具體值根據(jù)實(shí)際情況進(jìn)行調(diào)整
kernel.shmmax = 4294967295 (4G) (需要設(shè)置的比sga內(nèi)存大,sga為物理內(nèi)存內(nèi)存的80%);如果物理內(nèi)存是16G,則sga可以設(shè)置為12G,kernel.shmmax = 15032385536(14G)
[root@heima ~]# sysctl -p 讓內(nèi)核改變立即生效
1.7 配置/etc/hosts文件
[root@heima ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
10.1.1.1 heima.itcast.cn heima
1.8 關(guān)閉防火墻和selinux
[root@heima ~]# service iptables stop
[root@heima ~]# chkconfig iptables off
[root@heima ~]# sed -i '/SELINUX=/cSELINUX=disabled' /etc/selinux/config
2、以下用oracle賬號操作
2.1 配置oracle用戶shell環(huán)境
[root@heima ~]# su - oracle
[oracle@heima ~]$ vim .bash_profile
文件下面追加以下內(nèi)容:
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
export ORACLE_SID=ora11g
export PATH=$PATH:$ORACLE_HOME/bin
export LD_LIBRARY_PATH=$ORACLE_HOME/dbhome_1/lib:/lib:/usr/lib
2.2 安裝oracle軟件
·下載oracle軟件并解壓
[oracle@heima ~]$ ls
database
p13390677_112040_Linux-x86-64_1of7.zip
p13390677_112040_Linux-x86-64_2of7.zip
·進(jìn)入到解壓目錄里進(jìn)行安裝
[root@heima ~]# xhost +
[oracle@heima ~]$ cd database
[oracle@heima ~]$ ./runInstaller
錯誤提示:
解決辦法:
安裝VNC服務(wù),使用MobaXterm工具或其他客戶端連接VNC服務(wù)端
[root@heima ~]# yum -y install tigervnc-server
啟動服務(wù):
[root@heima ~]# vncserver :1
New 'heima.itcast.cn:2 (root)' desktop is heima.itcast.cn:2
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/heima.itcast.cn:1.log
① 跳過更新提示
② 選擇只安裝軟件
③ 安裝類型選項(xiàng),選擇單實(shí)例安裝
④ 選擇安裝軟件的語言
⑤ 選擇安裝版本
⑥ 選擇軟件安裝路徑
⑦ 指定相關(guān)文件目錄及組
⑧ 環(huán)境檢查,需要依賴包根據(jù)提示安裝即可
以下包可以忽略,繼續(xù)往下
⑨ 開始安裝
⑩ 在root用戶下執(zhí)行兩個腳本
在root用戶下運(yùn)行兩個腳本的結(jié)果:
執(zhí)行完畢腳本后,點(diǎn)擊OK,安裝完畢!
三、oracle數(shù)據(jù)庫安裝
1、運(yùn)行命令:dbca創(chuàng)建數(shù)據(jù)庫
[oracle@heima ~]$ dbca
2、選擇建庫類型
3、創(chuàng)建庫名與實(shí)例名
4、跳過安裝OEM
5、設(shè)置密碼
6、指定數(shù)據(jù)庫安裝目錄(數(shù)據(jù)文件等)
7、開啟歸檔
8、默認(rèn)選項(xiàng)
9、設(shè)置Oracle共享內(nèi)存占物理內(nèi)存的70%~80%
10、設(shè)置Processes為800
11、選擇字符集需注意
12、選擇連接模式
13、日志大小分配512M
14、記錄建庫腳本(目錄自定義)
15、開始安裝
四、安裝完畢配置監(jiān)聽
[oracle@ esxoradb ~]$ netmgr
五、本地訪問oracle數(shù)據(jù)庫
[oracle@heima admin]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.4.0 Production on Fri Sep 6 07:03:44 2019
Copyright (c) 1982, 2013, Oracle. All rights reserved.
SQL> conn sys as sysdba 管理員身份連接數(shù)據(jù)庫
Enter password: 輸入密碼,密碼不顯示
Connected.
SQL>
SQL> select INSTANCE_NAME,VERSION,DATABASE_STATUS from v$instance;
INSTANCE_NAME VERSION DATABASE_STATUS
---------------- ----------------- -----------------
ora11g 11.2.0.4.0 ACTIVE
北京校區(qū)