1. Background Use LDAP to centrally manage operation and maintenance related usernames and passwords. One account can be used to log in to multiple different systems. 2. Deploy Docker to build LDAP# Pull the image docker pull osixia/openldap:1.3.0 # Create and enter the mapping directory mkdir -p /usr/local/ldap && cd /usr/local/ldap # Start the container docker run \ -d \ -p 389:389 \ -p 636:636 \ -v /usr/local/ldap:/usr/local/ldap \ --name ldap \ osixia/openldap:1.3.0 #Default configuration dn dc=example,dc=org admin admin,dc=example,dc=org password admin Enter the container and verify whether it is available # Enter the container docker exec -it ldap /bin/bash # Execute the query ldapsearch -x -H ldap://localhost:389 -b dc=example,dc=org -D "cn=admin,dc=example,dc=org" -w admin # Or execute the query directly outside the container docker exec -it ldap ldapsearch -x -H ldap://localhost:389 -b dc=example,dc=org -D "cn=admin,dc=example,dc=org" -w admin Docker builds phpLDAPadmin # Pull the image docker pull osixia/phpldapadmin # Start the container docker run -dit \ > -p 8081:80 \ > --link ldap \ > --name suiyue_pla \ > --env PHPLDAPADMIN_HTTPS=false \ > --env PHPLDAPADMIN_LDAP_HOSTS=ldap \ > --restart always \ > --detach osixia/phpldapadmin Finish Enter http://localhost:8081/ Username: admin,dc=example,dc=org Password: admin Reference tutorial: https://blog.csdn.net/weixin_42257195/article/details/102769495 This is the end of this article about how to build OpenLDAP+phpLDAPadmin unified user authentication with Docker. For more relevant Docker user authentication content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: XHTML Getting Started Tutorial: Simple Web Page Creation
>>: It's the end of the year, is your MySQL password safe?
<body> <div id="root"> <...
use Flexible boxes play a vital role in front-end...
Table of contents Manual backup Timer backup Manu...
Preface When mysql modified the default database ...
HTML code: <a onclick="goMessage();"...
After I finished reading JavaScript DOM, I had a ...
This article uses an example to describe how to c...
1 System Installation Steps OS Version:1804 Image...
Problem 1: Baidu Map uses tiled images (the map i...
First, let's talk about why we use provide/in...
Website administrators often accidentally delete ...
On Linux, bash is adopted as the standard, which ...
Table of contents 1. Download 2. Installation 3. ...
In development, it is often necessary to cache th...
Preface: For the implementation of digital additi...