slapd 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Default location of the slapd.conf file or slapd.d cn=config directory. If
  2. # empty, use the compiled-in default (/etc/ldap/slapd.d with a fallback to
  3. # /etc/ldap/slapd.conf).
  4. SLAPD_CONF=/etc/ldap/slapd.conf
  5. # System account to run the slapd server under. If empty the server
  6. # will run as root.
  7. SLAPD_USER="openldap"
  8. # System group to run the slapd server under. If empty the server will
  9. # run in the primary group of its user.
  10. SLAPD_GROUP="openldap"
  11. # Path to the pid file of the slapd server. If not set the init.d script
  12. # will try to figure it out from $SLAPD_CONF (/etc/ldap/slapd.conf by
  13. # default)
  14. SLAPD_PIDFILE=
  15. # slapd normally serves ldap only on all TCP-ports 389. slapd can also
  16. # service requests on TCP-port 636 (ldaps) and requests via unix
  17. # sockets.
  18. # Example usage:
  19. # SLAPD_SERVICES="ldap://127.0.0.1:389/ ldaps:/// ldapi:///"
  20. SLAPD_SERVICES="ldap:///"
  21. # If SLAPD_NO_START is set, the init script will not start or restart
  22. # slapd (but stop will still work). Uncomment this if you are
  23. # starting slapd via some other means or if you don't want slapd normally
  24. # started at boot.
  25. #SLAPD_NO_START=1
  26. # If SLAPD_SENTINEL_FILE is set to path to a file and that file exists,
  27. # the init script will not start or restart slapd (but stop will still
  28. # work). Use this for temporarily disabling startup of slapd (when doing
  29. # maintenance, for example, or through a configuration management system)
  30. # when you don't want to edit a configuration file.
  31. SLAPD_SENTINEL_FILE=/etc/ldap/noslapd
  32. # For Kerberos authentication (via SASL), slapd by default uses the system
  33. # keytab file (/etc/krb5.keytab). To use a different keytab file,
  34. # uncomment this line and change the path.
  35. #export KRB5_KTNAME=/etc/krb5.keytab
  36. # Additional options to pass to slapd
  37. SLAPD_OPTIONS=""