반응형
OpenLDAP 백업/복원
[백업]
ldap config 백업(ldap 설정 백업)
slapcat -n 0 -l ldap-config_$(date '+%Y%m%d').ldif
$ slapcat -n 0 -l ldap-config_$(date '+%Y%m%d').ldif
--output--
$ ll | grep ldap-config_20210615
-rw-r--r-- 1 root root 39596 Jun 15 21:19 ldap-config_20210615.ldif
ldap data 백업(ldap 계정 백업)
slapcat -n 2 -l ldap-data_$(date '+%Y%m%d').ldif
$ slapcat -n 2 -l ldap-data_$(date '+%Y%m%d').ldif
--output--
$ ll | grep ldap-data_20210615
-rw-r--r-- 1 root root 3847 Jun 15 21:19 ldap-data_20210615.ldif
[복원]
ldap config 복원(ldap 설정 복원)
$ slapadd -n 0 -F /etc/openldap/slapd.d -l ldap-config_20210615.ldif
slapadd: could not add entry dn="cn=config" (line=1):
_ 1.31% eta none elapsed none spd 7.1 M/s
Closing DB...
ldap data 복원(ldap 계정 복원)
$ systemctl stop slapd
$ slapadd -l ldap-data_20210615.ldif
60c89c2f The first database does not allow slapadd; using the first available one (2)
60c89c2f => hdb_tool_entry_put: id2entry_add failed: BDB0067 DB_KEYEXIST: Key/data pair already exists (-30994)
60c89c2f => hdb_tool_entry_put: txn_aborted! BDB0067 DB_KEYEXIST: Key/data pair already exists (-30994)
slapadd: could not add entry dn="dc=4wxyz,dc=com" (line=1): txn_aborted! BDB0067 DB_KEYEXIST: Key/data pair already exists (-30994)
_## 10.11% eta none elapsed none spd 1.7 M/s
Closing DB...
$ systemctl start slapd
https://milestone-of-se.nesuke.com/l7protocol/ldap/slapcat-options/
728x90
반응형
'리눅스' 카테고리의 다른 글
[LDAP] OpenLDAP 서버 이전 (0) | 2021.06.17 |
---|---|
특정 계정이나 그룹(wheel 그룹)에서 su 명령어 사용을 제한하는 방법 (0) | 2021.06.16 |
CentOS 7에서 OpenLDAP 서버를 삭제하는 방법 (0) | 2021.06.14 |
[LDAP] phpLDAPadmin 설치 및 연동 (0) | 2021.06.14 |
[LDAP] OpenLDAP 클라이언트 설치 (0) | 2021.06.13 |