欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux服务器性能优化

程序员文章站 2022-07-02 10:36:58
...

CPU过度使用时大量进程等待CPU资源,导致进程数增加,继而导致内存占用增加,内存耗尽使用虚拟内存又会增加磁盘I/O和CPU开销

系统监控和性能分析命令

cat /proc/cpuinfo # 服务器会默认启用超线程
vmstat            #虚拟内存
iostat            #磁盘 yum install sysstat
sar  
top               
free              # 内存
ps                # 进程
ifstat            # 网络

系统最大打开文件数

ulimit -n 
vi /etc/security/limits.conf  #追加如下内容
* soft nofile 65535
* hard nofile 65535

内核参数的优化

Oracle数据库应用服务器
# 共享内存段
kernel.shmmax =
kernel.shmmni = 
kernel.shmall = 
kernel.sem =         # 系统信号量
fs.file-max = 65536  # 文件句柄 
Web应用服务器(网络内核参数 )
# vi /etc/sysctl.conf    追加如下内容
net.core.somaxconn = 65535
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.tcp_syncookies = 1
net.ipv4.conf.all.arp_notify = 1
net.ipv4.tcp_timestamps = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_fin_timeout = 30
net.ipv4.tcp_max_tw_buckets = 6000
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_keepalive_time = 1200
net.ipv4.ip_local_port_range = 1024 65000
net.ipv4.tcp_max_syn_backlog = 8192
# sysctl -p 立即生效
相关标签: linux