You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
The certificate is about to expire, I've got the .pfx file with the password. The CSR and certificate completion steps are done from IIS on a different windows machine. Now to update the SSL cert I edited the server.conf file located at C:\Program Files\Bamboo\conf with reference to the new .pfx file. Below is the file.
<Connector
port="443"
protocol="org.apache.coyote.http11.Http11Protocol"
keystoreFile="C:/cert/cert.pfx"
keystorePass="certPassword"
keystoreType="PKCS12"
maxThreads="150"
minSpareThreads="25"
connectionTimeout="20000"
disableUploadTimeout="true"
acceptCount="100"
enableLookups="false"
maxHttpHeaderSize="8192"
useBodyEncodingForURI="true"
URIEncoding="UTF-8"
scheme="https"
secure="true"
SSLEnabled="true"
sslProtocol="TLS"
clientAuth="false"
/>
However when I try to start the bamboo service, it gives error as windows could not start the atlassian bamboo service on local computer terminated unexpectedly.
Am I missing any steps ?