Guest User

Untitled

a guest
Nov 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # default: on
  2. # description: mongodb_check
  3. service mongocheck
  4. {
  5. # this is a config for xinetd, place it in /etc/xinetd.d/
  6. disable = no
  7. flags = REUSE
  8. socket_type = stream
  9. port = 9100
  10. wait = no
  11. user = nobody
  12. server = /path/to/mongocheck
  13. log_on_failure += USERID
  14. only_from = 0.0.0.0/0
  15. # recommended to put the IPs that need
  16. # to connect exclusively (security purposes)
  17. per_source = UNLIMITED
  18. }
Add Comment
Please, Sign In to add comment