Installation on Debian/Ubuntu with packages =========================================== Organization ------------ LemonLDAP::NG provides these packages: - lemonldap-ng: metapackage, contains no file but dependencies on other packages - lemonldap-ng-doc: contains HTML documentation and project docs (README, etc.) - lemonldap-ng-fastcgi-server: LL::NG FastCGI server (for Nginx) - lemonldap-ng-handler: Handler files - liblemonldap-ng-common-perl: configuration and common files - liblemonldap-ng-handler-perl: Handler common libraries - liblemonldap-ng-manager-perl: Manager files - liblemonldap-ng-portal-perl: Portal files - liblemonldap-ng-ssoaas-apache-client-perl: SSOaaS client module Get the packages ---------------- .. _installdeb-llng-repository: LL::NG repository ~~~~~~~~~~~~~~~~~ You can add this repository to have recent packages. .. Important:: The GPG key for debian has been updated on September 2025. Take care to use the new one by following the instructions below. First, make sure your system can install packages from HTTPS repositories: :: apt install apt-transport-https curl gnupg You will need to trust the `DEB signing key `__ : :: curl https://lemonldap-ng.org/lemonldap-debian-packages-pub.gpg | gpg --dearmor > /usr/share/keyrings/lemonldap-debian-packages-pub.gpg Then, add the official LL::NG repository :: vi /etc/apt/sources.list.d/lemonldap-ng.list :: # LemonLDAP::NG repository deb [arch=amd64 signed-by=/usr/share/keyrings/lemonldap-debian-packages-pub.gpg] https://lemonldap-ng.org/deb 2.0 main .. tip:: - Use the ``stable`` repository to get packages from current major version - Use the ``oldstable`` repository to get packages from previous major version - Use the ``testing`` repository to get packages from next major version - Use the ``2.0`` repository to stay on this major version and avoid upgrade to next major version Finally update your APT cache: :: apt update .. _installdeb-official-repository: Official Debian repository ~~~~~~~~~~~~~~~~~~~~~~~~~~ If you run Debian stable, testing or unstable, the packages are directly available: :: apt install lemonldap-ng .. tip:: Packages from `Debian repository `__ may not be up to date but are **security-maintained** by `Debian Security Team `__ for "stable" release and `LTS team `__ for "oldstable" release. Then if you don't need some new features or aren't concerned by a bug fixed earlier, **this is a good choice**. You can also use `Debian backports `__ or "testing"/"unstable" packages, team maintained. `Here is the list of Debian versions `__. .. danger:: LLNG Ubuntu packages are not in the "universe" but in the "multiverse". This means they are not security-maintained. If you use them, you should follow our security advisories on lemonldap-ng-users@ow2.org. Manual download ~~~~~~~~~~~~~~~ Packages are available on the `Download page `__. Install packages ---------------- With apt ~~~~~~~~ .. attention:: By default packages will require Nginx. If you want to use Apache2, install it first with mod_perl: :: apt install apache2 libapache2-mod-perl2 libapache2-mod-fcgid :: apt install lemonldap-ng With dpkg ~~~~~~~~~ Before installing the packages, install :doc:`dependencies`. Then: :: dpkg -i liblemonldap-ng-* lemonldap-ng* First configuration steps ------------------------- Change default DNS domain ~~~~~~~~~~~~~~~~~~~~~~~~~ By default, DNS domain is ``example.com``. You can change it quick with a sed command. For example, we change it to ``ow2.org``: .. code-block:: shell sed -i 's/example\.com/ow2.org/g' /etc/lemonldap-ng/* /var/lib/lemonldap-ng/conf/lmConf-1.json Upgrade ~~~~~~~ If you upgraded LL::NG, check all :doc:`upgrade notes`. DNS ~~~ Configure your DNS server to resolve names with your server IP: - auth.: main portal, must be public - manager.: manager, only for adminsitrators - test1., test2.: sample applications Follow the :ref:`next steps` File location ------------- - Configuration is in /etc/lemonldap-ng - LemonLDAP::NG configuration (edited by the Manager) is in /var/lib/lemonldap-ng/conf/ - All Perl modules are in the VENDOR perl directory (/usr/share/perl5/) - All Perl scripts/pages are in /var/lib/lemonldap-ng/ - All lemonldap-ng tools are in /usr/share/lemonldap-ng/bin/ - All static content (examples, CSS, images, etc.) is in /usr/share/lemonldap-ng/ - Apache configuration files are in /etc/lemonldap-ng and linked in /etc/apache2/sites-available and /etc/nginx/sites-available