Author: fpj Date: Fri Aug 12 16:46:11 2016 New Revision: 1756192 URL: http://svn.apache.org/viewvc?rev=1756192&view=rev Log: Fixing documentation for ZooKeeper release 3.5.2-alpha. Modified: zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.html zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.pdf Modified: zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.html URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.html?rev=1756192&r1=1756191&r2=1756192&view=diff ============================================================================== --- zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.html (original) +++ zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.html Fri Aug 12 16:46:11 2016 @@ -276,6 +276,11 @@ document.write("Last Published: " + docu
+ The following list contains configuration properties for the Java client. You can set any + of these properties using Java system properties. For server properties, please check the + following reference + Server configuration section. + +
+Set the value to false to disable + SASL authentication. Default is true.
+Specifies the context key in the JAAS login file. Default is "Client".
+Traditionally, a principal is divided into three parts: the primary, the instance, and the realm. + The format of a typical Kerberos V5 principal is primary/instance@REALM. + zookeeper.sasl.client.username specifies the primary part of the server principal. Default + is "zookeeper". Instance part is derived from the server IP. Finally server's principal is + username/IP@realm, where username is the value of zookeeper.sasl.client.username, IP is + the server IP, and realm is the value of zookeeper.server.realm.
+Realm part of the server principal. By default it is the client principal realm.
+This switch controls whether automatic watch resetting is enabled. Clients automatically + reset watches during session reconnect by default, this option allows the client to turn off + this behavior by setting zookeeper.disableAutoWatchReset to true. +
++ If you want to connect to the server secure client port, you need to set this property to + true + on the client. This will connect to server using SSL with specified credentials. Note that + it requires the Netty client. +
++ Specifies which ClientCnxnSocket to be used. Possible values are + org.apache.zookeeper.ClientCnxnSocketNIO + and + org.apache.zookeeper.ClientCnxnSocketNetty + . Default is + org.apache.zookeeper.ClientCnxnSocketNIO + . If you want to connect to server's secure client port, you need to set this property to + org.apache.zookeeper.ClientCnxnSocketNetty + on client. +
+Specifies the file path to a JKS containing the local credentials to be used for SSL connections, + and the password to unlock the file. +
+Specifies the file path to a JKS containing the remote credentials to be used for SSL connections, + and the password to unlock the file. +
+It specifies the maximum size of the incoming data from the server. The default value is 4194304 + Bytes , or just 4 MB. This is really a sanity check. The ZooKeeper server is designed to store and send + data on the order of kilobytes. If incoming data length is more than this value, an IOException + is raised.
+Specifies path to kinit binary. Default is "/usr/bin/kinit".
+The C binding has a single-threaded and multi-threaded library. Modified: zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.pdf URL: http://svn.apache.org/viewvc/zookeeper/site/trunk/content/doc/r3.5.2-alpha/zookeeperProgrammers.pdf?rev=1756192&r1=1756191&r2=1756192&view=diff ============================================================================== Binary files - no diff available.