溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

centos6 安裝oracle 11g

發(fā)布時(shí)間:2020-06-14 14:20:06 來(lái)源:網(wǎng)絡(luò) 閱讀:665 作者:wawa_fei 欄目:關(guān)系型數(shù)據(jù)庫(kù)

一、安裝oracle所需要的軟件包(具體根據(jù)oracle官方文檔)


可以使用

# yum -y install binutils* compat-lib* gcc-* glibc-* ksh libgcc-* libstdc++-* libaio-* make-* sysstat*

進(jìn)行安裝。

二、創(chuàng)建用戶組和用戶(root)

# groupadd oinstall
# groupadd dba
# useradd -g oinstall -G dba oracle
# passwd oracle

三、配置linux內(nèi)核參數(shù)(root)

#vi /etc/sysctl.conf                         
...                                              
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2147483648
kernel.shmmax = 68719476736
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
...
#sysctl -p

四、修改用戶參數(shù)(root)

#vi /etc/security/limits.conf
...
oracle           soft    nproc   2047
oracle           hard    nproc   16384
oracle           soft    nofile  1024
oracle           hard    nofile  65536
...

五、創(chuàng)建目錄

mkdir -p /u01/app/

chown -R oracle:oinstall /u01/app/

chmod -R 775 /u01/app/

六、設(shè)置環(huán)境變量

vi .bash_profile
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/11.2/db_1
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$ORACLE_HOME/jdk/bin:$PATH
export ORACLE_SID=test
export LANG="en_US.UTF-8"
export NLS_LANG=american_AMERICA.UTF8
export NLS_DATE_FORMAT="YYYY-MM-DD HH24:MI:SS"

七、解壓縮

#unzip linux.x64_11gR2_database_1of2.zip 
#unzip linux.x64_11gR2_database_2of2.zip

八、切到oracle用戶,安裝,,會(huì)報(bào)錯(cuò)Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set.    Failed <<<<

#su - oracle
$cd  /opt/database
$ ./runInstaller
Starting Oracle Universal Installer...

Checking Temp space: must be greater than 120 MB.   Actual 83942 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 7967 MB    Passed
Checking monitor: must be configured to display at least 256 colors
    >>> Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set.    Failed <<<<

Some requirement checks failed. You must fulfill these requirements before

continuing with the installation,

Continue? (y/n) [n] n

User Selected: No

Exiting Oracle Universal Installer, log for this session can be found at /tmp/OraInstall2017-06-25_10-52-12PM/installActions2017-06-25_10-52-12PM.log
$ su -
Password: 
root@dabian:~#  
root@dabian:~# xhost +SI:localuser:oracle
localuser:oracle being added to access control list
root@dabian:~# su -oracle

報(bào)錯(cuò)用上面命令解決,將oracle用戶添加到 xhost

執(zhí)行安裝命令,進(jìn)行安裝,彈出圖形界面

最后執(zhí)行

# /u01/app/oraInventory/orainstRoot.sh
#/u01/app/oracle/product/11.2.0/dbhome_1/root.sh


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI