欲修改内核参数添加何内容?

      1 修改内核参数
    /etc/sysctl.conf
   在这个文件后面添加如下内容:
 
?
kernel.shmall = 268435456
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
  以上的文件记得要备份一下,后面的也是一样的,就不再重复了。
     /etc/security/limits.conf
    添加如下内容:
   
oracle soft nproc 2047
 
oracle hard nproc 16384
 
oracle soft nofile 1024
 
oracle hard nofile 65536
     /etc/pam.d/login
   
添加如下内容:
    
session required /lib/security/ pam_limits.so
session required pam_limits.so
      /etc/profile
     添加如下内容:
   
if [ $USER = "oracle" ]; then
 
  if [ $SHELL = "/bin/ksh" ]; then
 
    ulimit -p 16384
 
    ulimit -n 65536
 
  else
 
    ulimit -u 16384 -n 65536
 
  fi
 
fi
     这样一来参数文件基本上就修改好了,需要重启一次。
 

你可能感兴趣的:(添加,修改,内容,内核参数)