This is an automated email from the ASF dual-hosted git repository.

burcham pushed a commit to branch sni
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/sni by this push:
     new 2e8e345  turn on javax.net.debug to troubleshoot connection failure
2e8e345 is described below

commit 2e8e345b982e4aa4d6b5fc1094979999700d1c5d
Author: Bill Burcham <bburc...@pivotal.io>
AuthorDate: Thu May 28 10:14:57 2020 -0700

    turn on javax.net.debug to troubleshoot connection failure
---
 README.md                                                              | 3 ++-
 .../main/java/org/apache/geode/benchmark/parameters/JvmParameters.java | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index e5675ae..237f777 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ versions default to a new format. PEM format can be forced by 
using `-m PEM`:
 ```
 ssh-keygen -m PEM -t rsa
 ```
-While runinng a test on a single machine (i.e. localhost) add the generated 
key to `authorized_keys` to authorize the user:
+While running a test on a single machine (i.e. localhost) add the generated 
key to `authorized_keys` to authorize the user:
 ```
 cat <your_public_key_file> >> ~/.ssh/authorized_keys
 ```
@@ -164,6 +164,7 @@ Also we have to provide `-DwithSsl=true` for an SNI test 
even though no SNI test
 * ~~generate `haproxy.cfg` with client-visible SNI hostnames~~
 * ~~turn on SNI via `setPoolSocketFactory` in a new `StartClientSNI` task~~
 * ~~set `--hostname-for-clients` on locator and servers for SNI~~
+* remove `-Djavax.net.debug=all` once connections are working
 * turn log-level back to "config" for server and locator 
 * make topology orthogonal to tests so all tests can run with SNI; have a 
`-Psni`/`-Dsni` flag
 * fix borken `PartitionedPutBenchmarkSNITest`: 
`DefineHostNamingsOffPlatformTask` breaks when running multiple roles on a 
single host
diff --git 
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JvmParameters.java
 
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JvmParameters.java
index d26a11a..5ce7979 100644
--- 
a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JvmParameters.java
+++ 
b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/parameters/JvmParameters.java
@@ -34,6 +34,7 @@ public class JvmParameters {
         "-Dsun.rmi.dgc.server.gcInterval=9223372036854775806",
         "-Dgemfire.OSProcess.ENABLE_OUTPUT_REDIRECTION=true",
         "-Dgemfire.launcher.registerSignalHandlers=true",
+        "-Djavax.net.debug=all",
         "-XX:+DisableExplicitGC");
   }
 

Reply via email to