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
I have installed Bamboo (6.3.1 build 60306) on an Ubuntu 16.04 instance.
I'm attempting to add a Linked Repository to connect to my BitBucket cloud instance.
In order to do that I've added the "Shared Credentials" of type SSH.
Now, when I attempt to add a new "Linked Repository" and choose the option "Use shared credentials to authenticate" I get the following error message:
"No shared credentials of this type have been defined. You can configure them in administration panel on Shared credentials page.
More information about shared credentials can be found in the documentation."
I've tried adding a "Shared Credentials" of type "Username & Password", which shows up when I attempt to add a new "Linked Repository". However, when I click on "Load Repositories", I get the error message "Failed to load data from Bitbucket. [403 Forbidden]"
Thanks to Atlassian Support for a quick resolution on this.
The challenge was that I was running Bamboo behind a Reverse Proxy (nginx).
The solution is described in -> https://confluence.atlassian.com/bamkb/failed-to-load-data-from-bitbucket-403-forbidden-attempting-to-create-a-bitbucket-cloud-repository-in-bamboo-fails-869183268.html
Can you please confirm username/password you used for Shared credentials works if you enter them at create Linked repository form
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When I key in the credentials directly on the "Linked repository form" and click on "Test Connection", I get the following error message:
When I click on the button "Load Repositories", I get "Failed to load data from Bitbucket. [403 Forbidden]":
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think I'm running into trouble because I'm running my Bamboo Server behind a Reverse Proxy Server (nginx). Here's my configuration file:
upstream bamboo_server {
server 111.222.333.444:8087;
}
server {
listen 80;
listen [::]:80;
server_name ci.xxxxxxxxx.com;
access_log /var/log/nginx/ci_xxxx_com_access.log;
error_log /var/log/nginx/ci_xxxx_com_error.log;
location / {
proxy_pass http://bamboo_server;
}
}
What would I need to change?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.