I followed the instruction “Setting up SSL on Ubuntu 16.04” https://eventstore.org/docs/server/setting_up_ssl_linux/
to set up SSL for TCP on Ubuntu.
However, when I try to test with Java to create events, it looks like not working as HTTP.
EventStore eventstore = EventStoreBuilder.newBuilder()
.singleNodeAddress("", 1115)
.useSslConnection("")
.userCredential("admin", "changeit")
.build();
eventstore.appentToStream("…")
.thenAccept(…)
The debug message are as following:
(EventStoreTCP.java:833) Connection established.
(AuthenticationHandler.java:91) Authentication SUCCESS
(EventStoreTCP.java:840) Connection closed
…
…
com.github,msemys.esjc.operation.manager.Retries.LimitReachedException:Item Operation (AppendToStreamOperation): reached retires limit: 10
java.util.concurrent.ExecutioonException: com.github.msemys.esj.operation.manager.RetiesLimtReachedException: Item Operation (AppendToStreamOperation): retry count 10, reached retries limit: 10
Probably I have missed some steps? Since using HTTP builder, can create new events or append streams.
Any clues?
Best wishes,