Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Bamboo SSL

Victor Crudu February 13, 2013

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.

1 answer

0 votes
Sultan Maiyaki
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 27, 2013

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

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events