CentOS 7下安裝Oracle 11g
1.配置本地yum源
[root@localhost yum.repos.d]# mount /dev/cdrom /mnt
編輯/etc/yum.repos.d/CentOS-Debuginfo.repo
[base-debuginfo]
name=CentOS-7 - Debuginfo
baseurl=file:///mnt
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Debug-7
enabled=1
禁用CentOS-Base.repo
2.安裝包
使用yum安裝,過程略
3.新增組和使用者
[root@localhost /]# groupadd oinstall
[root@localhost /]# groupadd dba
[root@localhost /]# useradd -g oinstall -G dba oracle
[root@localhost /]# passwd oracle
更改使用者 oracle 的密碼 。
新的 密碼:
無效的密碼: 密碼少於 8 個字元
重新輸入新的 密碼:
passwd:所有的身份驗證令牌已經成功更新。
4.配置核心引數
vi /etc/sysctl.conf /usr/lib/sysctl.d/00-system.conf
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 = 1048576
5.設定oracle使用者核心限制
編輯/etc/security/limits.conf檔案,新增以下內容
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
6.建立目錄
[root@localhost /]# mkdir -p /u01/app/oracle
[root@localhost /]# chown -R oracle:oinstall /u01
[root@localhost /]# chmod -R 775 /u01/app/oracle
7.以oracle使用者登入配置環境變數
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH
出現問題:
在安裝到84%時提示錯誤Error in invoking target 'install' of makefile
'/u01/app/oracle/product/11.2.0/dbhome_1/ctx/lib/ins_ctx.mk'.
See '/u01/app/oraInventory/logs/installActions2015-01-22_09-39-03AM.log' for details.
後注意到日誌有以下錯誤:
INFO: /lib64/libstdc++.so.5: undefined reference to `memcpy@GLIBC_2.14'
INFO: collect2: error: ld returned 1 exit status
INFO: make: *** [ctxhx] Error 1
網上說是glibc的版本2.17過高所致(高於2.14),
解決:
1)下載glibc-static-2.17-55.el7.x86_64.rpm安裝
2)該軟體包包含一個靜態連結庫:/usr/lib64/libc.a
修改/u01/app/oracle/product/11.2.0/dbhome_1/ctx/lib/ins_ctx.mk,將
ctxhx: $(CTXHXOBJ)
$(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK)
修改為:
ctxhx: $(CTXHXOBJ)
-static $(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK) /usr/lib64/stdc.a
點選Retry繼續安裝。
接著又提示”Error in invoking target 'agent nmhs' of makefile '/u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk.' ,
解決方法:在makefile中新增連結libnnz11庫的引數
修改/u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk,將
$(MK_EMAGENT_NMECTL)修改為:$(MK_EMAGENT_NMECTL) -lnnz11
點選Retry繼續安裝。
安裝成功!
[root@localhost yum.repos.d]# mount /dev/cdrom /mnt
編輯/etc/yum.repos.d/CentOS-Debuginfo.repo
[base-debuginfo]
name=CentOS-7 - Debuginfo
baseurl=file:///mnt
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Debug-7
enabled=1
禁用CentOS-Base.repo
2.安裝包
使用yum安裝,過程略
3.新增組和使用者
[root@localhost /]# groupadd oinstall
[root@localhost /]# groupadd dba
[root@localhost /]# useradd -g oinstall -G dba oracle
[root@localhost /]# passwd oracle
更改使用者 oracle 的密碼 。
新的 密碼:
無效的密碼: 密碼少於 8 個字元
重新輸入新的 密碼:
passwd:所有的身份驗證令牌已經成功更新。
4.配置核心引數
vi /etc/sysctl.conf /usr/lib/sysctl.d/00-system.conf
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 = 1048576
5.設定oracle使用者核心限制
編輯/etc/security/limits.conf檔案,新增以下內容
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
6.建立目錄
[root@localhost /]# mkdir -p /u01/app/oracle
[root@localhost /]# chown -R oracle:oinstall /u01
[root@localhost /]# chmod -R 775 /u01/app/oracle
7.以oracle使用者登入配置環境變數
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH
出現問題:
在安裝到84%時提示錯誤Error in invoking target 'install' of makefile
'/u01/app/oracle/product/11.2.0/dbhome_1/ctx/lib/ins_ctx.mk'.
See '/u01/app/oraInventory/logs/installActions2015-01-22_09-39-03AM.log' for details.
後注意到日誌有以下錯誤:
INFO: /lib64/libstdc++.so.5: undefined reference to `memcpy@GLIBC_2.14'
INFO: collect2: error: ld returned 1 exit status
INFO: make: *** [ctxhx] Error 1
網上說是glibc的版本2.17過高所致(高於2.14),
解決:
1)下載glibc-static-2.17-55.el7.x86_64.rpm安裝
2)該軟體包包含一個靜態連結庫:/usr/lib64/libc.a
修改/u01/app/oracle/product/11.2.0/dbhome_1/ctx/lib/ins_ctx.mk,將
ctxhx: $(CTXHXOBJ)
$(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK)
修改為:
ctxhx: $(CTXHXOBJ)
-static $(LINK_CTXHX) $(CTXHXOBJ) $(INSO_LINK) /usr/lib64/stdc.a
點選Retry繼續安裝。
接著又提示”Error in invoking target 'agent nmhs' of makefile '/u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk.' ,
解決方法:在makefile中新增連結libnnz11庫的引數
修改/u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk,將
$(MK_EMAGENT_NMECTL)修改為:$(MK_EMAGENT_NMECTL) -lnnz11
點選Retry繼續安裝。
安裝成功!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26937943/viewspace-1839910/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- CentOS 7.5靜默安裝Oracle 11gCentOSOracle
- centos7.3上安裝oracle xe 11gCentOSOracle
- Oracle 11G 安裝文件Oracle
- Oracle 11G RAC叢集安裝(3)——安裝OracleOracle
- Oracle 11G 安裝 bbed 工具Oracle
- 安裝centOS版本oracleCentOSOracle
- Oracle Linux 6.7 靜預設安裝Oracle 11gOracleLinux
- Oracle 11G RAC叢集安裝(2)——安裝gridOracle
- Oracle:Redhat 7 + Oracle RAC 11g 安裝 bug 總結OracleRedhat
- 靜默安裝Oracle資料庫11gOracle資料庫
- 靜默方式安裝oracle 11g 完整攻略Oracle
- centos7 安裝ORACLE 11.2.0.4.0 RACCentOSOracle
- centos 7.4靜默安裝oracle 19.3CentOSOracle
- Oracle VM VirtualBox安裝centos7OracleCentOS
- CentOS 7 - 安裝Oracle JDK8CentOSOracleJDK
- CentOS 7 安裝 Oracle12CCentOSOracle
- oracle 11g RAC 安裝前準備指令碼Oracle指令碼
- Oracle 11G資料庫單例項安裝Oracle資料庫單例
- 通過ORACLE VM virtualbox環境安裝oracle 11G RAC(ASM)OracleASM
- Oracle 11G RAC叢集安裝(1)——安裝前的準備Oracle
- centos安裝php的oracle擴充套件CentOSPHPOracle套件
- 超詳細oracle 11g安裝步驟 win版本Oracle
- oracle 11g 單例項資料庫的安裝Oracle單例資料庫
- Oracle 11.2.0.1.0在Centos7.5安裝的坑OracleCentOS
- CentOS 7.2靜默安裝Oracle11gCentOSOracle
- CentOS7.1安裝Oracle 12.1客戶端以及cx_OracleCentOSOracle客戶端
- Oracle 11g RAC安裝--基於openfiler儲存+多路徑+udev方式Oracledev
- CentOS7 安裝Oracle12c資料庫CentOSOracle資料庫
- linux系統(CentOS7)虛擬機器上安裝oracle 11g,解決oracle圖形介面卡住無法點選next問題LinuxCentOS虛擬機Oracle
- centos安裝nodeCentOS
- centos 安裝pyenvCentOS
- CentOS 安裝 dockerCentOSDocker
- CentOS安裝jdkCentOSJDK
- CentOS Docker 安裝CentOSDocker
- Centos 安裝 JenkinsCentOSJenkins
- centOS安裝rabbitMQCentOSMQ
- CentOS 安裝 mavenCentOSMaven
- Jenkins CentOS 安裝JenkinsCentOS
- CentOS安裝gitCentOSGit