Bamboo was installed using wizard and set to run as a windows service. I was trying to configure SSL on 8445 port using jetty.xml. In case jetty.xml contains settings for normal non-ssl running on port 8085 and the following connector:
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
<Set name="port"><Property name="jetty.port" default="8085"/></Set>
</New>
</Arg>
</Call>
everything runs ok, but as soon as I replace the above connector with the ssl one:
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
<Arg>
<New class="org.eclipse.jetty.http.ssl.SslContextFactory">
<Set name="keyStore"><SystemProperty name="jetty.home" default="." />/keystore</Set>
<Set name="keyStorePassword">password</Set>
<Set name="keyManagerPassword">password</Set>
</New>
</Arg>
<Set name="port">8445</Set>
<Set name="maxIdleTime">30000</Set>
</New>
</Arg>
</Call>
bamboo service shuts down after about a minute. Can someone shed some light, cause seems to be a common issue and the documentation defenitely lacks clarity and is just full of outdated workarounds.
Bamboo version 4.4.1
Thanks.
This was handled in support and it turns out that the issue was in path and extension to keystore file. The keystore file should be a .keystore and you can specify absolute paths in the jetty.xml file
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.