6

What's the easy way to do this?

Hubert Kario
  • 6,361
  • 6
  • 36
  • 65
blunders
  • 813
  • 7
  • 14
  • 30

2 Answers2

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.

http://home.roadrunner.com/~computertaijutsu/ldap.html

TessellatingHeckler
  • 5,726
  • 3
  • 26
  • 44
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