I have created an extra "space" on my Bluemix account. I double checked my Bluemix dashboard, but I am not able to delete that space. Now, how I can delete it?
Asked
Active
Viewed 2,930 times
1 Answers
9
You can use the cloud foundry CLI (cf
) to delete a space. Please note that you need to have the 'Organization Manager' role in order to be able to delete a space.
Use the following command:
# cf delete-space <space-name>
If you don't have cf
command line installed in your environment, you can install it from here:
https://github.com/cloudfoundry/cli/releases
Alternatively via Bluemix dashboard:
- Select the "Account and Settings" button (top right button, looks like an empty face)
- Click on "Manage Organizations". The UI changes to Manage Organization
- Select the space you want to delete on the left panel
- You will see the space name on the middle panel and a delete button
When you delete a space all applications and services on that space will also be deleted, so use this command with caution.

Alex da Silva
- 4,552
- 2
- 17
- 25
-
Thank you @Alex da Silva. I just deleted the wrong space by using the `cf` command line interface. – Fabio Oct 19 '15 at 20:16
-
I used the cf command line interface because the Bluemix web site displayed an error while deleting it. – Fabio Oct 19 '15 at 20:24
-
Unfortunately there is no command to `undo` it. If you have your apps locally you can push them to another space. – Alex da Silva Oct 20 '15 at 02:49