ORACLE在LINUX上的系統配置
vim /etc/sysctl.conf 檔案底端
vim /etc/sysctl.conf 檔案底端
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 1048576
net.core.rmem_max = 1048576
net.core.wmem_default = 262144
net.core.wmem_max = 262144
解釋:shmmax - 共享記憶體段,建議設大點, 達到最大SGA
shmmin - 最小的共享記憶體段.
shmmni - 共享記憶體標誌符的數量.
shmseg - 一個程式可分配的最大記憶體段數.
shmall - 最大可允許的記憶體數,比SGA還要大.
semmns - 訊號量,跟ORACLE的PROCESS數有關.
semmsl - 一個訊號量中最大的訊號量數.
SGA=((db_block_buffers * block size)+(shared_pool_size+large_pool_size+log_buffers)+1MB
其中 SEMMNS的值等於 SEMMSL*SEMMNI
fs.file-max
系統中所允許的檔案控制程式碼最大數目。
net.ipv4.ip_local_port_range
應用程式可使用的IPv4埠範圍。
net.core.rmem_default
套接字接收緩衝區大小的預設值
net.core.rmem_max
套接字接收緩衝區大小的最大值
net.core.wmem_default
套接字傳送緩衝區大小的預設值
net.core.wmem_max
套接字傳送緩衝區大小的最大值
shell限制
[root@dba ~]# grep -v '^#' /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
建立oracle軟體安裝檔案目錄
[root@dba ~]# mkdir -p /u01/oracle
[root@dba ~]# chown -R oracle:oinstall /u01/
[root@dba ~]#
設定oracle環境變數
vi ~oracle/.bash_profile
export ORACLE_BASE=/u01/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
export ORACLE_SID=ora10g
export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
載入配置
oracle使用者登出重新登入 或 source .bash_profile
ORACLE_BASE oracle產品基目錄
ORACLE_HOME 資料庫產品目錄
通常情況下HOME目錄是BASE的子目錄 ORACLE_HOME=$ORACLE_BASE/product/10.2.0
ORACLE_SID 作業系統和oracle例項關聯的紐帶
PATH 將安裝後的oracle命令追加到執行搜尋路徑
LD_LIBRARY_PATH 動態庫的位置
執行安裝命令
若想支援中文介面 以後的EM或DBCA介面顯示中文
安裝介面亂碼則 export LANG=C
安裝
rpm -ivh ttfonts-zh_CN-2.14-6.noarch.rpm
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25736250/viewspace-703611/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle在linux系統上的部署OracleLinux
- 【Linux】UDEV SCSI規則在Oracle Linux上配置ASMLinuxdevOracleASM
- 將java專案打包部署在linux系統上(配置成systemd)JavaLinux
- 在linux系統上裝oracle為什麼要修改作業系統的核心引數LinuxOracle作業系統
- Oracle10gRAC在Linux AS5.3上的安裝配置OracleLinux
- Linux系統上配置redis開機自啟LinuxRedis
- Oracle在Linux上的安裝OracleLinux
- Oracle在NFS檔案系統上建庫OracleNFS
- 【配置上線】Oracle資料庫Linux系統下安裝(圖形介面)Oracle資料庫Linux
- Linux作業系統上刪除OracleLinux作業系統Oracle
- 在Linux系統下FTP的配置與應用(轉)LinuxFTP
- 在 Linux 上如何清理垃圾系統管理員Linux
- 在 Linux 上用 strace 來理解系統呼叫Linux
- Linux上使用HAProxy配置HTTP負載均衡系統LinuxHTTP負載
- 在作業系統上把ORACLE程式刪掉作業系統Oracle
- 在Linux中,如何配置和管理系統服務?Linux
- Linux上安裝配置GFS檔案系統的10gRACLinux
- linux系統基於oracle的核心引數配置說明LinuxOracle
- 如何判斷Linux系統安裝在VMware上?Linux
- 在普通PC上建立Linux作業系統(轉)Linux作業系統
- Linux系統配置(系統優化)Linux優化
- Tomcat在Linux上的安裝與配置TomcatLinux
- rhel Linux系統yum的配置Linux
- oracle10gR2 在RHEL4上的安裝配置文件(基於檔案系統)Oracle
- zt_ibm 在 UNIX 和 Linux 系統上安裝和配置 WebSphere Application ServerIBMLinuxWebAPPServer
- 在Linux 上配置vsftpd-2.0.1LinuxFTP
- Linux平臺上Oracle Rac中的TAF配置LinuxOracle
- 在Linux系統上安裝Java反編譯工具的方法LinuxJava編譯
- 在 Linux 和 Mac OS X 系統上執行 .NETLinuxMac
- 在Linux系統中讓ORACLE自動啟動LinuxOracle
- linux系統中配置hugepage,提升oracle資料庫效能LinuxOracle資料庫
- Linux系統互信ssh的配置方法Linux
- 如何配置Linux系統下的yumLinux
- Linux 系統中的Samba配置(轉)LinuxSamba
- 配置 Rational Functional Tester 在 Linux 上執行FunctionLinux
- Linux系統上的命令使用格式Linux
- 搜狗輸入法在Linux Mint系統上的問題總結Linux
- LINUX在嵌入式系統上的實踐和探討(轉)Linux