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.
Hi,
I am working on the document below.
Exporting | Bitbucket Data Center and Server 8.4 | Atlassian Documentation
Since I am in a Windows environment, I am trying to execute the following curl statement after installing curl and jq, but it fails.
curl -u admin -s -n -X POST -H 'Content-type: application/json' -d '{"repositoriesRequest":{"includes":[{"projectKey":"*","slug":"*"}]}}' http://localhost:7990/rest/api/1.0/migration/exports/preview | jq .
I changed it to double quotation marks and the inner double quotation marks should be wrapped with \, so I changed it as below, but it still fails.
curl -u admin -s -n -X POST -H "Content-type: application/json" -d "{\"repositoriesRequest\":{\"includes\":[{\"projectKey\":\"*\",\"slug\":\"*\"}]}}" http://locahost:7990/rest/api/1.0/migration/exports/preview | jq .
Does anyone know how to do it?
Hi Levi,
the command won't work like that because it's trying to redirect output to jq using the Linux pipe syntax. If you drop | jq . from these commands it should work.
Cheers,
Christian
Premier Support Engineer
Atlassian
Hi Christian,
Thank you for the reply.
Unfortunately, another problem has.
There is an error that the account clearly has admini permission but cannot be accessed.
{"errors":[{"context":null,"message":"You are not permitted to access this resource","exceptionName":"com.atlassian.bitbucket.AuthorisationException"}]}
What did I miss here? It is questionable whether it is possible in a Windows environment.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Levi,
I suppose you're trying to export from a Windows-based Bitbucket Server (not Data Center) instance? That should definitely work. Are you sure you are using a System Administrator account for this?
Cheers,
Christian
Premier Support Engineer
Atlassian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes.
Bitbucket v7.8.0 / server 50 Users: Commercial License.
And 'admin' is bitbucket admin account. It login well from bitbucket instance.
Additionally, the reason why I need this is to migrate Bitbucket to another instance.(need pull request and comment history, etc)
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The -n option was the cause. The parameter is removed, so it works fine.
It was fine in a Linux environment, but it won't work in Windows if you have that parameter.
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.