1、安装 yum -y install nscd
2、配置文件: /etc/nscd.conf
3、缓存文件:缓存DB文件在/var/db/nscd下。可以通过nscd -g查看统计的信息
4、清除缓存:nscd -i passwd/group/hosts; service nscd restart;service nscd reload
5、nscd可以缓存服务passwd group hosts等,对应库为/etc/passwd, /etc/hosts 和 /etc/resolv.conf等,每个库保存两份缓存,一份是找到记录的,一份是没有找到记录的。每一种缓存都保存有生存时间(TTL)。其作用就是在本地增加cache ,加快如DNS的解析等的速度。
6、但是,很多情况下,可能开启nscd之后,会发现命中率一直为0。原因在于很多linux服务会采用直接访问的模式来读取缓存, 直读的模式性能更好,但因为不经过daemon,所以无法进行统计。解决办法是把shared
的属性关闭
参考:1、http://octopresszhangyu.herokuapp.com/blog/2015/06/19/nscd/
2、https://www.hi-linux.com/posts/9461.html