C# LDAP 备份 - 创建 LDIF 文件

发布于 2024-12-11 03:42:56 字数 115 浏览 0 评论 0原文

有谁知道或知道如何编写将 ldap 存储备份到 ldif 文件的程序的任何示例?我需要编写一个程序,因为我们无法在我们的计算机上安装任何其他开源软件,例如 jxplorer。任何帮助将不胜感激。

谢谢

Does anyone know, or know of any examples of how to write a proram that backs up an ldap store to an ldif file? i need to write a program because we cannot install any other open source software like jxplorer on our machines. Any assistence will be much appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹊巢 2024-12-18 03:42:56

使用openldap,发现这个: http://www.openldap.org/doc/admin/dbtools .html

slapcat 程序用于将数据库转储到 LDIF 文件。这
当您想要为您的文件创建一个人类可读的备份时,这会很有用
数据库或当您想要离线编辑数据库时。该计划
像这样调用:

slapcat -l <filename> -f <slapdconfigfile> [-d <debuglevel>] [-n <databasenumber>|-b <suffix>]

其中 -n 或 -b 用于选择 slapd.conf 中的数据库(5)
使用 -f 指定。相应的LDIF输出被写入
标准输出或使用 -l 选项指定的文件。

using openldap, found this: http://www.openldap.org/doc/admin/dbtools.html

The slapcat program is used to dump the database to an LDIF file. This
can be useful when you want to make a human-readable backup of your
database or when you want to edit your database off-line. The program
is invoked like this:

slapcat -l <filename> -f <slapdconfigfile> [-d <debuglevel>] [-n <databasenumber>|-b <suffix>]

where -n or -b is used to select the database in the slapd.conf(5)
specified using -f. The corresponding LDIF output is written to
standard output or to the file specified using the -l option.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文