Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4562945
  • 博文数量: 1214
  • 博客积分: 13195
  • 博客等级: 上将
  • 技术积分: 9105
  • 用 户 组: 普通用户
  • 注册时间: 2007-01-19 14:41
个人简介

C++,python,热爱算法和机器学习

文章分类

全部博文(1214)

文章存档

2021年(13)

2020年(49)

2019年(14)

2018年(27)

2017年(69)

2016年(100)

2015年(106)

2014年(240)

2013年(5)

2012年(193)

2011年(155)

2010年(93)

2009年(62)

2008年(51)

2007年(37)

分类: NOSQL

2016-06-21 21:01:11

vi /etc/redis/redis.conf
maxclients 65000
tcp-backlog 65536
timeout 120
tcp-keepalive 60


vi /etc/security/limits.conf 
* soft nofile 65536
* hard nofile 65536


vi /etc/sysctl.conf
vm.overcommit_memory = 1
vm.swappiness = 0
net.core.somaxconn = 60000
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_congestion_control = cubic
net.ipv4.tcp_syncookies = 1


net.ipv4.tcp_max_syn_backlog = 4096
sysctl vm.overcommit_memory=1




sudo sysctl -a | grep file-max
sysctl -w fs.file-max=810000
vi /etc/sysctl.conf
fs.file-max = 810000
sysctl -p


the two /etc/pam.d/common-session* contain a `session required pam_limits.so`


sudo su
echo '3' > /sys/class/net/eth0/queues/rx-0/rps_cpus
echo 'never' > /sys/kernel/mm/transparent_hugepage/enabled
redis-server /etc/redis/redis.conf
阅读(1464) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~