ulimit :直接影响nginx进程OR子进程所能打开的文件数量,默认一般是1024
ulimit -n // #查看当前ulimit值是多少 // ulimit -SHn 65535 // #手动设置ulimit值 // // #修改系统ulimit // vim /etc/security/limits.conf // #添加以下两行 // * soft nofile 65535 * hard nofile 65535
ipv4 :以下配置主要是修改系统的ipv4相关设设,如wait值等
vim /etc/sysctl.conf // #添加以下行 // net.ipv4.tcp_max_tw_buckets = 6000 net.ipv4.tcp_sack = 1 net.ipv4.tcp_window_scaling = 1 net.ipv4.tcp_rmem = 4096 87380 4194304 net.ipv4.tcp_wmem = 4096 16384 4194304 net.core.wmem_default = 8388608 net.core.rmem_default = 8388608 net.core.rmem_max = 16777216 net.core.wmem_max = 16777216 net.core.netdev_max_backlog = 262144 net.core.somaxconn = 262144 net.ipv4.tcp_max_orphans = 3276800 net.ipv4.tcp_max_syn_backlog = 262144 net.ipv4.tcp_timestamps = 0 net.ipv4.tcp_synack_retries = 1 net.ipv4.tcp_syn_retries = 1 net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_mem = 94500000 915000000 927000000 net.ipv4.tcp_fin_timeout = 1 net.ipv4.tcp_keepalive_time = 30 net.ipv4.ip_local_port_range = 1024 65000 //#使之立即生效// /sbin/sysctl -p
worker_processes 8; // #nginx进程数,建议按照cpu数目来指定,一般为它的倍数 // worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000; // #为每个进程分配cpu,上例中将8个进程分配到8个cpu // worker_rlimit_nofile 102400; // #这个指令是指当一个nginx进程打开的最多文件描述符数目,与ulimit -n的值保持一致。 // use epoll; // #使用epoll的I/O模型 // worker_connections 102400 // #每个进程允许的最多连接数 // keepalive_timeout 60 // #超时时间 // client_header_buffer_size 4k // #客户端请求头部的缓冲区大小,这个可以根据你的系统分页大小来设置,一般一个请求的头部大小不会超过1k,不过由于一般系统分页都要大于1k,所以这里设置为分页大小。分页大小可以用命令getconf PAGESIZE取得。 // open_file_cache max=102400 inactive=20s; // #这个将为打开文件指定缓存,默认是没有启用的,max指定缓存数量,建议和打开文件数一致,inactive是指经过多长时间文件没被请求后删除缓存。// open_file_cache_valid 30s; // #这个是指多长时间检查一次缓存的有效信息。// open_file_cache_min_uses 1; // #open_file_cache指令中的inactive参数时间内文件的最少使用次数,如果超过这个数字,文件描述符一直是在缓存中打开的,如上例,如果有一个文件在inactive时间内一次没被使用,它将被移除。//
对性能能有比较显著影响的参数:
pm = static // #值可选为static或dynamic,表示php-fpm进程数是静态还是动态产生的 // pm.max_children = 640 // #进程数最大值 // pm.max_requests = 1025 // #最大连接数,假设集群fpm配置都是一样的,那么最大连接数可以这么计算:web机 * max_request * nginx work // request_terminate_timeout = 20s // #连接超时时间,如果超过该时间php-fpm进程将断开并且释放相关资源回收内存等 //