How do I configure LDAP on Centos 6 for user authentication in the most secure and correct way?

Here is a couple of shell scripts that will install and configure openldap on a server and install and configure sssd for user authentication against the LDAP-server. One that installs the LDAP-server with groups, users etc. #!/bin/sh ########################################################### # Install LDAP-server ########################################################### # Enable SELinux for higher security. setenforce 1 setsebool -P domain_kernel_load_modules 1 # … Read more