I did a new installation of bamboo server. My Configuration:
* Windows 10
* PostgreSQL 9.6
What I have done:
* Started bamboo as service (Local user)
* Clicked through the installation (external database etc.)
* "Create first test plan"
* Added repository (github private repo)
The create plan action (http://localhost:8085/build/admin/create/createPlan.action) leaded me to an error page:
Unable to read cipher data for 0
What I have done:
1. Reinstall:
A complete reinstall resulted in the same error.
I also tried to add the repository again, also the same error.
2. Investigation:
The cipher directory (bamboo-home\xml-data\configuration\cipher) seems not be accessibly for the local user.
So I changed permission to agrant the local user access.
The error now is "java.nio.file.AccessDeniedException: V:\bamboo-home\xml-data\configuration\cipher"
By the way: The cipher file "cipher.key_0" is empty.
Hi Karl,
As you see in this KB article, the latest version of Bamboo (from 5.15.x) is shipped with System-wide encryption feature. The encryption key is stored in the database and on the filesystem. Both the filesystem and the database key parts are required to perform successful decryption. The key part stored on your filesystem is located under <BAMBOO-HOME>/xml-data/configuration/cipher.
When Bamboo first generates the filesystem key part, it limits ownership and access to this file to only the user running Bamboo. We see this cause issues on Windows as the user running the process often gets changed when configuring Bamboo to run as a service as opposed to a console application. When the process is started as a different user to the user running Bamboo when the filesystem key part was first generated, Bamboo can no longer access the filesystem key part.
Looking at this error snip,
"java.nio.file.AccessDeniedException: V:\bamboo-home\xml-data\configuration\cipher"
It looks like you have permission issue to access this directory like we suspected. We recommend you set up a local user, with local admin rights, to run the windows service and rerun the service.
Please do the following:
Hope that helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.