「OpenLDAP」:修訂間差異

出自Gea-Suan Lin's Wiki
跳至導覽 跳至搜尋
本頁面具有訪問限制。如果您看見此訊息,這代表您沒有訪問本頁面的權限。
行 19: 行 19:
</syntaxhighlight>
</syntaxhighlight>


 同時我們要將範本複製過來修改(範本在<code>/usr/share/slapd/slapd.conf</code> )。
 同時我們要將範本複製過來修改(範本在<code>/usr/share/slapd/slapd.conf</code> 這邊 )。


== 外部連結 ==
== 外部連結 ==

於 2018年3月29日 (四) 08:39 的修訂

OpenLDAP是一套LDAP伺服器軟體。

安裝

由於OpenLDAP 2.4在2007年十月發行,至今只有一直發行minor release,所以通常都可以透過系統的套件裝到合理的版本:

# apt install slapd

設定

Ubuntu 16.04內的版本預設會使用目錄結構設定檔(預設讀取/etc/ldap/slapd.d/整個目錄),但這跟網路上一般使用單檔設定不同(通常會是/etc/ldap/slapd.conf),所以我們要告知slapd使用檔案設定檔。

這要修改/etc/default/slapd的內容,將SLAPD_CONF參數從空的值改為/etc/ldap/slapd.conf

# Default location of the slapd.conf file or slapd.d cn=config directory. If
# empty, use the compiled-in default (/etc/ldap/slapd.d with a fallback to
# /etc/ldap/slapd.conf).
SLAPD_CONF=/etc/ldap/slapd.conf

同時我們要將範本複製過來修改(範本在/usr/share/slapd/slapd.conf這邊)。

外部連結