真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

超簡(jiǎn)單Oracle12c安裝

超簡(jiǎn)單 Oracle 12c 安裝

簡(jiǎn)介 :

  • Oracle Database,又名OracleRDBMS,或簡(jiǎn)稱Oracle。是甲骨文公司的一款關(guān)系數(shù)據(jù)庫(kù)管理系統(tǒng)。它是在數(shù)據(jù)庫(kù)領(lǐng)域一直處于領(lǐng)先地位的產(chǎn)品。
    可以說(shuō)Oracle數(shù)據(jù)庫(kù)系統(tǒng)是目前世界上流行的關(guān)系數(shù)據(jù)庫(kù)管理系統(tǒng),系統(tǒng)可移植性好、使用方便、功能強(qiáng),適用于各類大、中、小、微機(jī)環(huán)境。它是一種高效率、可靠性好的 適應(yīng)高吞吐量的數(shù)據(jù)庫(kù)解決方案。

    創(chuàng)新互聯(lián)主營(yíng)泗縣網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都app軟件開(kāi)發(fā)公司,泗縣h5重慶小程序開(kāi)發(fā)公司搭建,泗縣網(wǎng)站營(yíng)銷推廣歡迎泗縣等地區(qū)企業(yè)咨詢

    系統(tǒng)簡(jiǎn)介 :

  • ORACLE數(shù)據(jù)庫(kù)系統(tǒng)是美國(guó)ORACLE公司(甲骨文)提供的以分布式數(shù)據(jù)庫(kù)為核心的一組軟件產(chǎn)品,是目前最流行的客戶/服務(wù)器(CLIENT/SERVER)或B/S體系結(jié)構(gòu)的數(shù)據(jù)庫(kù)之一。
    比如SilverStream就是基于數(shù)據(jù)庫(kù)的一種中間件。ORACLE數(shù)據(jù)庫(kù)是目前世界上使用最為廣泛的數(shù)據(jù)庫(kù)管理系統(tǒng),作為一個(gè)通用的數(shù)據(jù)庫(kù)系統(tǒng),它具有完整的數(shù)據(jù)管理功能;
    作為一個(gè)關(guān)系數(shù)據(jù)庫(kù),它是一個(gè)完備關(guān)系的產(chǎn)品;作為分布式數(shù)據(jù)庫(kù)它實(shí)現(xiàn)了分布式處理功能。但它的所有知識(shí),只要在一種機(jī)型上學(xué)習(xí)了ORACLE知識(shí),便能在各種類型的機(jī)器上使用它。

    安裝條件 :

    1. 至少 4G 物理內(nèi)存,8G 虛擬內(nèi)存。
    2. 準(zhǔn)備一塊不少于 15G 新磁盤(pán)。

本案環(huán)境 :

操作系統(tǒng) : CentOS 7.3 x86_64

安裝 Oracle :

1. 添加磁盤(pán) ,更改主機(jī)名,做關(guān)聯(lián) :
vim /etc/hostname   #更改主機(jī)名Oracle

HOSTNAME=oracle     #添加 
vim /etc/hosts
192.168.217.134 oracle    #關(guān)聯(lián)本地地址
2.重啟機(jī)器、更改磁盤(pán)屬性 :
fdisk /dev/sdb   #進(jìn)入新添加的磁盤(pán)進(jìn)行處理
[root@oracle ~]# mkfs -t xfs /dev/sdb1   #轉(zhuǎn)換xfs格式
meta-data=/dev/sdb1              isize=512    agcount=4, agsize=1310656 blks
         =                       sectsz=512   attr=2, projid32bit=1
         =                       crc=1        finobt=0, sparse=0
data     =                       bsize=4096   blocks=5242624, imaxpct=25
         =                       sunit=0      swidth=0 blks
naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
log      =internal log           bsize=4096   blocks=2560, version=2
         =                       sectsz=512   sunit=0 blks, lazy-count=1
realtime =none                   extsz=4096   blocks=0, rtextents=0
mkdir /orc
mount /dev/sdb1 /orc     #掛載
3. 安裝軟件環(huán)境包 :
yum -y install binutils compat-libcap1 compat-libstdc++-33 gcc gcc-c++ glibc glibc-devel ksh libaio 
libaio-devel libgcc libstdc++ libstdc++-devel libXi libXtst make sysstat unixODBC unixODBC-devel
4.調(diào)整內(nèi)核參數(shù) :
vim /etc/sysctl.conf  

#添加以下
fs.aio-max-nr = 1048576   
#異步IO請(qǐng)求數(shù)目 推薦值是:1048576 其實(shí)它等于 1024*1024 也就是 1024K 個(gè)
fs.file-max = 6815744   
#打開(kāi)的文件句柄的最大數(shù)量,防止文件描述符耗盡的問(wèn)題
kernel.shmall = 2097152 
#共享內(nèi)存總量 頁(yè)為單位,內(nèi)存除以4K所得
kernel.shmmax = 4294967295  
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128  
#SEMMSL(250): 每個(gè)信號(hào)集的最大信號(hào)數(shù)量 
#SEMMNS(32000):用于控制整個(gè) Linux 系統(tǒng)中信號(hào)的最大數(shù) 
#SEMOPM(100): 內(nèi)核參數(shù)用于控制每個(gè) semop 系統(tǒng)調(diào)用可以執(zhí)行的信號(hào)操作的數(shù)量 
#SEMMNI (128):內(nèi)核參數(shù)用于控制整個(gè) Linux 系統(tǒng)中信號(hào)集的最大數(shù)量
net.ipv4.ip_local_port_range = 9000 65500  
#用于向外連接的端口范圍  
net.core.rmem_default = 262144 
#套接字接收緩沖區(qū)大小的缺省值
net.core.rmem_max = 4194304   
#套接字接收緩沖區(qū)大小的最大值
net.core.wmem_default = 262144 
#套接字發(fā)送緩沖區(qū)大小的缺省值
net.core.wmem_max = 1048576   
#套接字發(fā)送緩沖區(qū)大小的最大值
sysctl -p   #重新加載配置文件
5.用戶環(huán)境配置 :
groupadd oinstall   #創(chuàng)建組 安裝組
groupadd dba        #創(chuàng)建組 管理組
useradd -g oinstall -G dba oracle  #管理用戶
passwd oracle   #設(shè)置密碼
mkdir -p /orc/app/oracle             #工作目錄
chown -R oracle:oinstall /orc/app/ 
chmod -R 755 /orc/app/oracle/
vim /home/oracle/.bash_profile   #oracle用戶環(huán)境配置
#刪除
PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH

#添加
umask 022   #創(chuàng)建文件的權(quán)限
ORACLE_BASE=/orc/app/oracle   #安裝目錄
ORACLE_HOME=/orc/app/oracle/product/12.2.0/dbhome_1/  #產(chǎn)品工作目錄
ORACLE_SID=orcl  #實(shí)例
NLS_LANG="SIMPLIFIED CHINESE_CHINA".UTF8   #簡(jiǎn)體中文
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$ORACLE_HOME/bin  #oracle命令導(dǎo)入環(huán)境變量
LANG=zh_CN.UTF-8  #字符集

export PATH LANG NLS_LANG ORACLE_BASE ORACLE_HOME ORACLE_SID  #導(dǎo)入
6.oracle用戶資源限制 :
vim /etc/pam.d/login   #管理limits
#添加
session    required     /lib/security/pam_limits.so  
session    required     pam_limits.so
vim /etc/security/limits.conf
#添加
oracle        soft    nproc           2047       #單用戶可使用的進(jìn)程數(shù)量 軟限制 硬限制
oracle        hard    nproc           16384
oracle        soft    nofile          1024       #用戶可打開(kāi)的文件數(shù)量
oracle        hard    nofile          65536
oracle        soft    stack           10240      #堆棧設(shè)置
vim /etc/profile
#末行插入
if [ $USER = "oracle" ]
 then
   if [ $SHELL = "/bin/ksh" ]
     then
       ulimit -p 16384       #緩沖區(qū)大小 kb單位
       ulimit -n 65536       #文件數(shù)
   else
     ulimit -u 16384 -n 65536    #進(jìn)程數(shù)  文件數(shù)
   fi
fi
7.安裝包解壓,安裝 oracle ,在圖形化界面操作 :
[root@oracle ~]# xhost +   #以root用戶在圖形化界面操作授權(quán)顯示圖形界面
access control disabled, clients can connect from any host
su - oracle           #切換oracle用戶

export DISPLAY=:0.0   #設(shè)置DISPLAY環(huán)境變量

cd /abc/oracle               #切換到oracle安裝包位置
[oracle@oracle oracle]$ ./runInstaller   #安裝
正在啟動(dòng) Oracle Universal Installer...
檢查臨時(shí)空間: 必須大于 500 MB。   實(shí)際為 11122 MB    通過(guò)
檢查交換空間: 必須大于 150 MB。   實(shí)際為 8191 MB    通過(guò)
檢查監(jiān)視器: 監(jiān)視器配置至少必須顯示 256 種顏色。    實(shí)際為 16777216    通過(guò)
準(zhǔn)備從以下地址啟動(dòng) Oracle Universal Installer /tmp/OraInstall2018-07-17_09-17-43AM. 請(qǐng)稍候...

超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝

提示:安裝到79%時(shí)會(huì)跳出提示,需要在root用戶執(zhí)行命令,等命令執(zhí)行完成之后點(diǎn)擊確定 :
[root@oracle ~]# /orc/app/oraInventory/orainstRoot.sh
更改權(quán)限/orc/app/oraInventory.
添加組的讀取和寫(xiě)入權(quán)限。
刪除全局的讀取, 寫(xiě)入和執(zhí)行權(quán)限。

更改組名/orc/app/oraInventory 到 oinstall.
腳本的執(zhí)行已完成。
[root@oracle ~]# /orc/app/oracle/product/12.2.0/dbhome_1/root.sh
Performing root user operation.

The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME=  /orc/app/oracle/product/12.2.0/dbhome_1

Enter the full pathname of the local bin directory: [/usr/local/bin]: 
The contents of "dbhome" have not changed. No need to overwrite.
The contents of "oraenv" have not changed. No need to overwrite.
The contents of "coraenv" have not changed. No need to overwrite.

Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Do you want to setup Oracle Trace File Analyzer (TFA) now ? yes|[no] : 
yes
Installing Oracle Trace File Analyzer (TFA).
Log File: /orc/app/oracle/product/12.2.0/dbhome_1/install/root_oracle_2018-07-17_09-33-07-445808435.log
Finished installing Oracle Trace File Analyzer (TFA)
8.鏈接數(shù)據(jù)庫(kù) :
使用命令行界面 :
[root@oracle ~]# su - oracle
上一次登錄:二 7月 17 09:43:58 CST 2018
[oracle@oracle ~]$ sqlplus / as sysdba    #sys用戶是oracle的最高管理員所以要加上as

SQL*Plus: Release 12.2.0.1.0 Production on 星期二 7月 17 09:48:54 2018

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

連接到: 
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> 
web 界面管理 :

超簡(jiǎn)單 Oracle 12c 安裝超簡(jiǎn)單 Oracle 12c 安裝


網(wǎng)頁(yè)標(biāo)題:超簡(jiǎn)單Oracle12c安裝
地址分享:http://weahome.cn/article/jsjodg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部