ORACLE10g安装前系统配置详解

阅读更多
##首先,将路径写入环境变量方便维护
##其次,在oracle安装过程中会使用到这些路径
export ORACLE_HOME=
export ORACLE_BASE=
/*
SID没有配置,可能出现异常ORA-12162: TNS:net service name is incorrectly specified
*/
export ORACLE_SID=
/*
异常是:sqlplus command not found
*/
export PATH=\$ORACLE_HOME/bin:\$PATH

#/etc/security/limits.conf配置
/*
soft、hard对应软硬限制
软限制,官方说明,没察觉到有用。

for enforcing soft resource limits. These limits are ones that the user can move up or down within the permitted range by any pre-existing hard limits. The values specified with this token  can be thought of as default values, for normal system usage. 

硬限制,不允许你超过
noproc 表示  oracle用户最大可以产生16384个进程
nofile表示最大打开文件数 65536
*/
oracle soft nproc 2047 
oracle hard nproc 16384  
oracle soft nofile 1024
oracle hard nofile 65536

#搜过一些文档里面好像都配置了/etc/pam.d/login
#然后在里面加入了session required pam_limits.so
#实际rhel6u3中已经加入了,其他版本没看,不过应该也有吧
#可通过下列语句查看
[root #] grep system-auth /etc/pam.d/login
session    include      system-auth
[root #] grep limit /etc/pam.d/system-auth
session required pam_limits.so
#然后就到了/etc/sysctl.conf这个文件了
/**
shmmax是核心参数中最重要的参数之一,用于定义单个共享内存段的最大值,限制SGA
SGA Sytem Global Area 系统全局区,设置太小,SGA将拆分为多个内存段,影响性能
最低要求,大于系统内存一半,建议值,能给多大给多大吧
*/
kernel.shmmax = 4294967296
/*
shmall该参数控制可以使用的共享内存的总页数
Linux共享内存页大小为4KB,共享内存段的大小都是共享内存页大小的整数倍。一个共享内存段的最大大小是16G,那么需要共享内存页数是16GB/4KB=16777216KB /4KB=4194304(页)
*/
kernel.shmall = 2097152
/*
kernel.shmmin该参数是共享内存段的最大数量
*/
kernel.shmmin=4096
/*
250是参数semmsl的值,表示一个信号量集合中能够包含的信号量最大数目。
32000是参数semmns的值,表示系统内可允许的信号量最大数目。
100是参数semopm的值,表示单个semopm()调用在一个信号量集合上可以执行的操作数量。
128是参数semmni的值,表示系统信号量集合总数。
*/
kernel.sem = 250 32000 100 128
/*
net.ipv4.ip_local_port_range表示应用程序可使用的IPv4端口范围
*/
net.ipv4.ip_local_port_range = 1024 65000
/*
rmem表示套接字接收缓冲区大小的缺省值和最大值
*/
net.core.rmem_default = 262144
net.core.rmem_max = 262144
/*
wmem表示套接字发送缓冲区大小的缺省值和最大值
*/
net.core.wmem_default = 262144
net.core.wmem_max = 262144
/*
fs.file-max可以打开的最大文件数
*/
fs.file-max = 6815744
/*
fs.aio-max-nr同时可以拥有的的异步IO请求数目
*/
fs.aio-max-nr = 1048576



你可能感兴趣的:(oracle10g,oracle10g安装系统配置)