【Oracle】RHEL6.4-64位 安裝oracle11.2.0.3(一) 軟、硬體需求檢查

海星星hktk發表於2015-12-22

RHEL6.4-64位 安裝oracle11.2.0.3(一)

軟、硬體需求檢查


作業系統:RHEL6.4 - 64位
資料庫:   Oracle 11.2.0.3  64位 



1.1   軟、硬體需求檢查

 

1.1.1   檢視記憶體、swap空間

檢視實體記憶體

[root@rhel64 ~]# free -m

 

檢視作業系統共享記憶體,oracle資料庫使用記憶體要小於此值

[root@rhel64 ~]# df -h /dev/shm/

 

調整方法:修改/etc/fstab

[root@rhel64 ~]# vi /etc/fstab   修改對應/dev/shm   defaults,size=1500M

[root@rhel64 ~]# cat /etc/fstab | grep shm


 

[root@rhel64 ~]# mount -o remount /dev/shm

[root@rhel64 ~]# df -h /dev/shm



1.1.2   檢視系統架構


[root@rhel64 ~]# uname -m


 

1.1.3   磁碟空間檢查

 

/tmp空間  >1G

[root@rhel64 ~]# df -h /tmp/


 

軟體安裝目錄空間

[root@rhel64 ~]# df -h /u01/


 

軟體存放目錄空間 >2.5G       (不安裝grid)

[root@rhel64 ~]# df -h /software/



圖形介面顯示解析度  1024*768  以上

 

 

1.1.4   核心需求檢查 

檢視作業系統版本

[root@rhel64 ~]# cat /proc/version

[root@rhel64 ~]# lsb_release -id


 

核心需求:


[root@rhel64 ~]# uname -r


 

 

 

1.1.5   軟體包檢查

  

[root@rhel64 ~]# yum install binutils*

[root@rhel64 ~]# yum install compat*

[root@rhel64 ~]# yum install glibc*

[root@rhel64 ~]# yum install ksh*

[root@rhel64 ~]# yum install libgcc*

[root@rhel64 ~]# yum install libstdc*

[root@rhel64 ~]# yum install libaio*

[root@rhel64 ~]# yum install make*

[root@rhel64 ~]# yum install sysstat*

 

可以提前檢查 也可以安裝報錯缺少包時再yum安裝具體包

 


[root@rhel64 ~]# yum install unixODBC*

 

1.1.6   修改資源限制

[root@rhel64 ~]# cp /etc/security/limits.conf /etc/security/limits.conf.bak

[root@rhel64 ~]# vi /etc/security/limits.conf

oracle              soft    nproc   2047

oracle              hard    nproc   16384

oracle              soft    nofile  1024

oracle              hard    nofile  65536

oracle              soft    stack   10240

 

[root@rhel64 ~]# tail -8 /etc/security/limits.conf


 

1.1.7   修改核心引數

建議編輯前給虛擬機器做快照備份!!

[root@rhel64 ~]# cp /etc/sysctl.conf /etc/sysctl.conf.bak

[root@rhel64 ~]# vi /etc/sysctl.conf

fs.aio-max-nr = 1048576

fs.file-max = 6815744

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

 

[root@rhel64 ~]# tail -16 /etc/sysctl.conf


重啟,驗證

[root@rhel64 ~]# reboot





呂星昊
2015.12.22

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29475508/viewspace-1876930/,如需轉載,請註明出處,否則將追究法律責任。

相關文章