OpenLDAP: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 77: Line 77:


==References==
==References==
* [https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-openldap-and-phpldapadmin-on-ubuntu-16-04 Install and Configure OpenLDAP and phpLDAPadmin on Ubuntu 16.04]
{|
* [https://tux-techie.com/2020/10/11/how-to-install-an-openldap-server-in-ubuntu-20-04-with-phpldapadmin/ Install an OpenLDAP Server in Ubuntu 20.04 with phpLDAPadmin]
|valign="top"|
* [https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-openldap-and-phpldapadmin-on-ubuntu-16-04 LDAP » Install and Configure phpLDAPadmin on Ubuntu 16.04]
* [https://tux-techie.com/2020/10/11/how-to-install-an-openldap-server-in-ubuntu-20-04-with-phpldapadmin/ LDAP » Install using Ubuntu 20.04 with phpLDAPadmin]
* [https://benjamin-dronen.medium.com/installing-openldap-and-phpldapadmin-on-ubuntu-20-04-lts-7ef3ca40dc00 Install OpenLDAP and phpLDAPadmin on Ubuntu 20.04 LTS]
* [https://benjamin-dronen.medium.com/installing-openldap-and-phpldapadmin-on-ubuntu-20-04-lts-7ef3ca40dc00 Install OpenLDAP and phpLDAPadmin on Ubuntu 20.04 LTS]
* [https://www.digitalocean.com/community/tutorials/how-to-manage-and-use-ldap-servers-with-openldap-utilities Manage and Use LDAP Servers with OpenLDAP Utilities]
* [https://www.digitalocean.com/community/tutorials/how-to-manage-and-use-ldap-servers-with-openldap-utilities LDAP » Manage & Use with OpenLDAP Utilities]
* [[Build LDAP Docker Image from Ubuntu]]
* [https://www.digitalocean.com/community/questions/fazer-downgrade-pho-7-3-para-7-0 LDAP » Fazer downgrade pho 7.3 para 7.0]
* [https://www.digitalocean.com/community/questions/fazer-downgrade-pho-7-3-para-7-0 Fazer downgrade pho 7.3 para 7.0]
* [[Build LDAP Docker Image from Ubuntu | LDAP » Build Docker Image from Ubuntu]]
* [https://www.openldap.org/doc/admin24/guide.html OpenLDAP Administrator's Guide]
* [https://dev.mysql.com/blog-archive/accessing-the-same-data-through-ldap-and-sql/ LDAP » MySQL Store & Fetch Data]
* [https://github.com/breisig/phpLDAPadmin Clone phpLDAPadmin]
* [https://www.openldap.org/doc/admin24/guide.html LDAP » Administrator's Guide]
* [https://github.com/breisig/phpLDAPadmin LDAP » Clone phpLDAPadmin]
 
|valign="top"|
 
|valign="top"|
 
|-
|colspan="3"|
----
|-
|valign="top"|
* [[PostgreSQL]]
* [[MySQL]]
 
|valign="top"|
 
|valign="top"|
 
|}

Revision as of 22:43, 3 April 2024

apt update
apt list --upgradable
apt install slapd ldap-utils

Configure

ldapwhoami -H ldap:// -x
dpkg-reconfigure slapd
ls -lah /var/backups/
cat > /etc/ldap/ldap.conf <<'EOF'
#
# LDAP Defaults
#

# See ldap.conf(5) for details
# This file should be world readable but not world writable.

BASE   dc=chorke,dc=org
URI    ldap://localhost ldap://localhost:666

#SIZELIMIT      12
#TIMELIMIT      15
#DEREF          never

# TLS certificates (needed for GnuTLS)
TLS_CACERT      /etc/ssl/certs/ca-certificates.crt
EOF

phpLDAPadmin

#apt install phpldapadmin
#a2enmod proxy_fcgi setenvif
#a2enconf php7.3-fpm

cd /var/www/html/
git clone https://github.com/breisig/phpLDAPadmin.git
cp /var/www/html/phpLDAPadmin/config/config.php.example \
/var/www/html/phpLDAPadmin/config/config.php
# phpldapadmin config update for localhost
# PHPC_FILE='/etc/phpldapadmin/config.php'
PHPC_FILE='/var/www/html/phpLDAPadmin/config/config.php'

# ldap server name change (line 286)
LDAP_NAME_FIND="$servers->setValue('server','name','My LDAP Server');"
LDAP_NAME_FILL="$servers->setValue('server','name','CK LDAP Server');"
sed -i "s@$LDAP_NAME_FIND.*@$LDAP_NAME_FILL@" "$PHPC_FILE"

# ldap server host change (line 293)
LDAP_HOST_FIND="$servers->setValue('server','host','127.0.0.1');"
LDAP_HOST_FILL="$servers->setValue('server','host','127.0.0.1');"
sed -i "s@$LDAP_HOST_FIND.*@$LDAP_HOST_FILL@" "$PHPC_FILE"

# ldap server base change (line 300)
LDAP_BASE_FIND="$servers->setValue('server','base',array('dc=example,dc=com'));"
LDAP_BASE_FILL="$servers->setValue('server','base',array('dc=chorke,dc=org'));"
sed -i "s@$LDAP_BASE_FIND.*@$LDAP_BASE_FILL@" "$PHPC_FILE"

# ldap server base change (line 326)
LDAP_BASE_FIND="$servers->setValue('login','bind_id','cn=admin,dc=example,dc=com');"
LDAP_BASE_FILL="$servers->setValue('login','bind_id','cn=admin,dc=chorke,dc=org');"
sed -i "s@$LDAP_BASE_FIND.*@$LDAP_BASE_FILL@" "$PHPC_FILE"

# ldap server warn change (line 161)
LDAP_WARN_FIND="$config->custom->appearance['hide_template_warning'] = false;"
LDAP_WARN_FILL="$config->custom->appearance['hide_template_warning'] = true;"
sed -i "s@$LDAP_WARN_FIND.*@$LDAP_WARN_FILL@" "$PHPC_FILE"

References