Performance Problem when Using LDAPS

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

症状

After setting an LDAP Directory Connector to use SSL (secure connection via the ldaps protocol) performance problems arise.

原因

The default JNDI/LDAP service provider in Java does not pool SSL connections by default, meaning every LDAP request must open a new connection to the server (reference).

ソリューション

To force the JVM to pool the SSL connections, either:

Add the following line to your FISHEYE_INST/system.properties file (create such a file if it doesn't exist):

com.sun.jndi.ldap.connect.pool.protocol=plain ssl
com.sun.jndi.ldap.connect.pool.authentication=none simple DIGEST-MD5

または

Add the following variables to FISHEYE_OPTS (see Environment variables):
  • -Dcom.sun.jndi.ldap.connect.pool.protocol="plain ssl"
  • -Dcom.sun.jndi.ldap.connect.pool.authentication="none simple DIGEST-MD5"'

 

If you wish to customize the SSL connection pooling further, please see the full documentation provided by Sun.

 

最終更新日: 2016 年 2 月 26 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.