You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2016/02/11 13:46:24 UTC

svn commit: r1729817 - /kylin/site/docs/howto/howto_ldap_and_sso.html

Author: liyang
Date: Thu Feb 11 12:46:23 2016
New Revision: 1729817

URL: http://svn.apache.org/viewvc?rev=1729817&view=rev
Log:
minor update on howto_ldap_and_sso

Modified:
    kylin/site/docs/howto/howto_ldap_and_sso.html

Modified: kylin/site/docs/howto/howto_ldap_and_sso.html
URL: http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_ldap_and_sso.html?rev=1729817&r1=1729816&r2=1729817&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_ldap_and_sso.html (original)
+++ kylin/site/docs/howto/howto_ldap_and_sso.html Thu Feb 11 12:46:23 2016
@@ -1827,11 +1827,11 @@
 
 <h4 id="configure-ldap-server-info">Configure LDAP server info</h4>
 
-<p>Firstly, provide LDAP URL, and username/password if the LDAP server is secured;</p>
+<p>Firstly, provide LDAP URL, and username/password if the LDAP server is secured; The password in kylin.properties need be salted; You can Google “Generate a BCrypt Password” or run org.apache.kylin.rest.security.PasswordPlaceholderConfigurer to get a hash of your password.</p>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>ldap.server=ldap://&lt;your_ldap_host&gt;:&lt;port&gt;
 ldap.username=&lt;your_user_name&gt;
-ldap.password=&lt;your_password&gt;
+ldap.password=&lt;your_password_hash&gt;
 </code></pre>
 </div>