You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2016/02/25 09:29:49 UTC

kylin git commit: KYLIN-1401 update document

Repository: kylin
Updated Branches:
  refs/heads/document 0fb16aa2e -> 22dddc271


KYLIN-1401 update document

Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/22dddc27
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/22dddc27
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/22dddc27

Branch: refs/heads/document
Commit: 22dddc271d6f04dcf543fee972d48d44bd267783
Parents: 0fb16aa
Author: shaofengshi <sh...@apache.org>
Authored: Thu Feb 25 16:29:31 2016 +0800
Committer: shaofengshi <sh...@apache.org>
Committed: Thu Feb 25 16:29:31 2016 +0800

----------------------------------------------------------------------
 website/_docs/howto/howto_ldap_and_sso.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/22dddc27/website/_docs/howto/howto_ldap_and_sso.md
----------------------------------------------------------------------
diff --git a/website/_docs/howto/howto_ldap_and_sso.md b/website/_docs/howto/howto_ldap_and_sso.md
index 1102559..5bfb97d 100644
--- a/website/_docs/howto/howto_ldap_and_sso.md
+++ b/website/_docs/howto/howto_ldap_and_sso.md
@@ -13,12 +13,12 @@ Kylin supports LDAP authentication for enterprise or production deployment; This
 
 #### Configure LDAP server info
 
-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.
+Firstly, provide LDAP URL, and username/password if the LDAP server is secured; The password in kylin.properties need be encrypted with AES with a given key; to encrypt it, you download latest Kylin source code and then run org.apache.kylin.rest.security.PasswordPlaceholderConfigurer in your IDE, passing "AES" as the first parameter, your plain password as the second parameter to get an encrypted password.
 
 ```
 ldap.server=ldap://<your_ldap_host>:<port>
 ldap.username=<your_user_name>
-ldap.password=<your_password_hash>
+ldap.password=<your_password_encrypted>
 ```
 
 Secondly, provide the user search patterns, this is by LDAP design, here is just a sample: