What's the easy way to do this?
Asked
Active
Viewed 2.0k times
2 Answers
13
yum list installed
will show you if it's installed.
chkconfig --list
will show you if the service is running (might be called slapd)
Config will be somewhere like /etc/openldap/* and you can see if it's been configured.
Test it by querying it with something like:
ldapsearch -x -b 'dc=mycompany,dc=com' 'objectclass=*'
but you might have to know how it's (supposed to be) configured to know what to search for.

TessellatingHeckler
- 5,726
- 3
- 26
- 44
-
1**@TessellatingHeckler:** Thanks, very high quality answer!! Cheers!! – blunders Oct 22 '10 at 03:16
4
Another way would be:
pidof slapd
If this results in an integer (the PID of the process), you have a running OpenLDAP server. If there is no output, it's not running.

Fladi
- 860
- 4
- 8