logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Centos 7 what repository is mod_ldap in ?
Author
Shaggy1



Joined: 30 Jul 2020
Posts: 9

PostPosted: Thu 06 Aug '20 17:46    Post subject: Centos 7 what repository is mod_ldap in ? Reply with quote

Hi

I have just installed centos 7.6 and wish to run a server which includes ldap authentication. However it looks like mod_ldap is not included by default.

From the searches I have done it looks like I should be able to do something like:
yum install mod_ldap

However when I try this I get the following:
Code:
$ yum install mod_ldap
No package mod_ldap available.
Error: Nothing to do


I assume this is because I have not got the correct repository installed or enabled, but I do not seem to be able to find which one(s) I need. These are the ones I have:
Code:
$ yum repolist all
repo id                                                                                      repo name                                                                                                                       status
LSI-common-install                                                                           LSI-common-install 7 - x86_64 - Released Updates                                                                                enabled:     36
LSI-common-updates                                                                           LSI-common-updates 7 - x86_64 - Released Updates                                                                                enabled:     92
dell-deployment-toolkit                                                                      dell-deployment-toolkit                                                                                                         enabled:     14
dell-system-update_dependent                                                                 dell-system-update_dependent                                                                                                    enabled:     41
dell-system-update_independent                                                               dell-system-update_independent                                                                                                  enabled:    565
epel/x86_64                                                                                  Extra Packages for Enterprise Linux 7 - x86_64                                                                                  enabled: 13,425
epel-debuginfo/x86_64                                                                        Extra Packages for Enterprise Linux 7 - x86_64 - Debug                                                                          disabled
epel-source/x86_64                                                                           Extra Packages for Enterprise Linux 7 - x86_64 - Source                                                                         disabled
epel-testing/x86_64                                                                          Extra Packages for Enterprise Linux 7 - Testing - x86_64                                                                        disabled
epel-testing-debuginfo/x86_64                                                                Extra Packages for Enterprise Linux 7 - Testing - x86_64 - Debug                                                                disabled
epel-testing-source/x86_64                                                                   Extra Packages for Enterprise Linux 7 - Testing - x86_64 - Source                                                               disabled



Anyone know what repository mod_ldap is in ?

I also wish to install mod_proxy and mod_proxy_html, so if the repo is different for them could someone tell me where I get them from as well ?
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7294
Location: Germany, Next to Hamburg

PostPosted: Mon 10 Aug '20 11:15    Post subject: Reply with quote

Hi,
the module is in the official repo[1].

In doubt run yum update first

Code:

#update lists and system
yum update
#install
yum install mod_ldap
# check what version is installed.
rpm -qil mod_ldap


For apache 2.4 you also need mod_authnz_ldap

[1] https://centos.pkgs.org/7/centos-x86_64/mod_ldap-2.4.6-93.el7.centos.x86_64.rpm.html
Back to top


Reply to topic   Topic: Centos 7 what repository is mod_ldap in ? View previous topic :: View next topic
Post new topic   Forum Index -> Apache