登录
首页 >  文章 >  linux

CentOS 7 简单搭建OpenLDAP服务

时间:2025-01-29 13:45:44 396浏览 收藏

编程并不是一个机械性的工作,而是需要有思考,有创新的工作,语法是固定的,但解决问题的思路则是依靠人的思维,这就需要我们坚持学习和更新自己的知识。今天golang学习网就整理分享《CentOS 7 简单搭建OpenLDAP服务》,文章讲解的知识点主要包括,如果你对文章方面的知识点感兴趣,就不要错过golang学习网,在这可以对大家的知识积累有所帮助,助力开发能力的提升。

CentOS 7 简单搭建OpenLDAP服务

**安装OpenLDAP服务**

首先,安装OpenLDAP服务器和客户端组件:

yum install -y openldap-servers openldap-clients

复制并配置数据库配置文件:

cp /usr/share/openldap-servers/DB_CONFIG.example /var/lib/ldap/DB_CONFIG
chown ldap. /var/lib/ldap/DB_CONFIG

启动并启用OpenLDAP服务:

systemctl start slapd
systemctl enable slapd
**配置OpenLDAP服务**
  1. 创建管理员密码:
slappasswd

记录生成的密码,稍后配置中会用到。

  1. 配置根密码:

使用文本编辑器创建一个名为chrootpw.ldif的文件,并将生成的管理员密码添加到olcRootPW字段中。 例如:

dn: olcDatabase={0}config,cn=config
changetype: modify
add: olcRootPW
olcRootPW: {SSHA}xxxxxxxxxxxxxxxxxxxxxxxx  // 将xxxxxxxxxxxxxxxxxxxxxxxx替换为你的密码哈希值

然后导入配置:

ldapadd -Y EXTERNAL -H ldapi:/// -f chrootpw.ldif
**导入基本模式**

导入必要的模式文件:

ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/cosine.ldif
ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/nis.ldif
ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/inetorgperson.ldif
**设置域名和数据库配置**
  1. 创建目录管理员密码:
slappasswd

记录生成的密码。

  1. 配置域名和管理员信息:

创建一个名为chdomain.ldif的文件,替换dc=jumpserver,dc=tk为你自己的域名,并将生成的目录管理员密码添加到olcRootPW字段中。 请注意olcAccess部分的权限设置。 以下是一个示例,请根据你的需求修改:

dn: olcDatabase={1}monitor,cn=config
changetype: modify
replace: olcAccess
olcAccess: {0}to * by dn.base="gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth" read by dn.base="cn=Manager,dc=example,dc=com" read by * none
dn: olcDatabase={2}hdb,cn=config
changetype: modify
replace: olcSuffix
olcSuffix: dc=example,dc=com  // 替换为你的域名
dn: olcDatabase={2}hdb,cn=config
changetype: modify
replace: olcRootDN
olcRootDN: cn=Manager,dc=example,dc=com  // 替换为你的域名和管理员DN
dn: olcDatabase={2}hdb,cn=config
changetype: modify
add: olcRootPW
olcRootPW: {SSHA}xxxxxxxxxxxxxxxxxxxxxxxx  // 将xxxxxxxxxxxxxxxxxxxxxxxx替换为你的密码哈希值
dn: olcDatabase={2}hdb,cn=config
changetype: modify
add: olcAccess
olcAccess: {0}to attrs=userPassword,shadowLastChange by dn="cn=Manager,dc=example,dc=com" write by anonymous auth by self write by * none
olcAccess: {1}to dn.base="" by * read
olcAccess: {2}to * by dn="cn=Manager,dc=example,dc=com" write by * read

然后导入配置:

ldapmodify -Y EXTERNAL -H ldapi:/// -f chdomain.ldif
  1. 创建基础条目:

创建一个名为basedomain.ldif的文件,替换dc=jumpserver,dc=tk为你自己的域名。 例如:

dn: dc=example,dc=com  // 替换为你的域名
objectClass: top
objectClass: dcObject
objectclass: organization
o: Example Organization
dc: example
dn: cn=Manager,dc=example,dc=com  // 替换为你的域名
objectClass: organizationalRole
cn: Manager
description: Directory Manager
dn: ou=People,dc=example,dc=com  // 替换为你的域名
objectClass: organizationalUnit
ou: People
dn: ou=Group,dc=example,dc=com  // 替换为你的域名
objectClass: organizationalUnit
ou: Group

然后导入配置:

ldapadd -x -D cn=Manager,dc=example,dc=com -W -f basedomain.ldif
**开放防火墙端口**

允许LDAP服务通过防火墙:

firewall-cmd --add-service=ldap --permanent
firewall-cmd --reload
**添加用户**
  1. 生成用户密码:
slappasswd

记录生成的密码。

  1. 创建用户条目:

创建一个名为ldapuser.ldif的文件,替换dc=jumpserver,dc=tk为你自己的域名,并将生成的密码添加到userPassword字段中。 例如:

dn: uid=test,ou=People,dc=example,dc=com  // 替换为你的域名
objectClass: inetOrgPerson
objectClass: posixAccount
objectClass: shadowAccount
cn: test
sn: Linux
userPassword: {SSHA}xxxxxxxxxxxxxxxxx  // 将xxxxxxxxxxxxxxxxx替换为你的密码哈希值
loginShell: /bin/bash
uidNumber: 1000
gidNumber: 1000
homeDirectory: /home/test
dn: cn=test,ou=Group,dc=example,dc=com  // 替换为你的域名
objectClass: posixGroup
cn: test
gidNumber: 1000
memberUid: test

然后导入配置:

ldapadd -x -D cn=Manager,dc=example,dc=com -W -f ldapuser.ldif
  1. 验证用户:
ldapsearch -x -D "cn=Manager,dc=example,dc=com" -W -b "dc=example,dc=com"

请记住将占位符域名和密码哈希值替换为你自己的值。 在执行命令前,仔细检查所有.ldif文件中的内容,确保没有错误。

本篇关于《CentOS 7 简单搭建OpenLDAP服务》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>