Reputation: 55
I created a Bluemix service in my "Dev" org for testing. Now I want to move it to a different org. Is there a way to just move or transfer the existing service or do I have to create a whole new one in the new org?
Upvotes: 1
Views: 455
Reputation: 83
I haven't found the option to transfer it to another account but it isn't difficult:
1º Edit your manifest.yml applications: - name: new-service-name ...
2º cf login -a https://api.ng.bluemix.net with the login and password in the new organization
3º cf push new-service-name
Upvotes: -1
Reputation: 3546
Moving services between orgs is not possible. You will need to to create a new service in the new org.
Upvotes: 3