nscd.conf 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #
  2. # /etc/nscd.conf
  3. #
  4. # An example Name Service Cache config file. This file is needed by nscd.
  5. #
  6. # Legal entries are:
  7. #
  8. # logfile <file>
  9. # debug-level <level>
  10. # threads <initial #threads to use>
  11. # max-threads <maximum #threads to use>
  12. # server-user <user to run server as instead of root>
  13. # server-user is ignored if nscd is started with -S parameters
  14. # stat-user <user who is allowed to request statistics>
  15. # reload-count unlimited|<number>
  16. # paranoia <yes|no>
  17. # restart-interval <time in seconds>
  18. #
  19. # enable-cache <service> <yes|no>
  20. # positive-time-to-live <service> <time in seconds>
  21. # negative-time-to-live <service> <time in seconds>
  22. # suggested-size <service> <prime number>
  23. # check-files <service> <yes|no>
  24. # persistent <service> <yes|no>
  25. # shared <service> <yes|no>
  26. # max-db-size <service> <number bytes>
  27. # auto-propagate <service> <yes|no>
  28. #
  29. # Currently supported cache names (services): passwd, group, hosts, services
  30. #
  31. # logfile /var/log/nscd.log
  32. # threads 6
  33. # max-threads 128
  34. # server-user nobody
  35. # stat-user somebody
  36. debug-level 0
  37. # reload-count 5
  38. paranoia no
  39. # restart-interval 3600
  40. enable-cache passwd yes
  41. positive-time-to-live passwd 600
  42. negative-time-to-live passwd 20
  43. suggested-size passwd 211
  44. check-files passwd yes
  45. persistent passwd yes
  46. shared passwd yes
  47. max-db-size passwd 33554432
  48. auto-propagate passwd yes
  49. enable-cache group yes
  50. positive-time-to-live group 3600
  51. negative-time-to-live group 60
  52. suggested-size group 211
  53. check-files group yes
  54. persistent group yes
  55. shared group yes
  56. max-db-size group 33554432
  57. auto-propagate group yes
  58. enable-cache hosts yes
  59. positive-time-to-live hosts 3600
  60. negative-time-to-live hosts 20
  61. suggested-size hosts 211
  62. check-files hosts yes
  63. persistent hosts yes
  64. shared hosts yes
  65. max-db-size hosts 33554432
  66. enable-cache services yes
  67. positive-time-to-live services 28800
  68. negative-time-to-live services 20
  69. suggested-size services 211
  70. check-files services yes
  71. persistent services yes
  72. shared services yes
  73. max-db-size services 33554432