Bluemix - Server error, status code: 403, error code: forbidden, message: No such account -


logging bluemix using cf cli gives error. however, can log-in same credentials using web.

download latest version of cf here: https://github.com/cloudfoundry/cli/releases

and login following these steps:

login bluemix:

cf api https://api.[region].bluemix.net     [region 'eu-gb', 'ng' or 'au-syd'. depends app staged ]  cf login  -u <your_email> -o <your_org> -s <yourspace> 

take note that:

if dashboard ui link is: http://console.ng.bluemix.net , organization "myorg"(for example) [you can select current organization clicking on icon profile on right on top , select 1 in dropdown list ]

use these commands:

cf api https://api.ng.bluemix.net cf login -u bluemix_id -o myorg 

if dashboard ui link is: http://console.eu-gb.bluemix.net , organization "myorg"(for example) [you can select current organization clicking on icon profile on right on top , select 1 in dropdown list ]

use these commands:

cf api https://api.eu-gb.bluemix.net cf login -u bluemix_id -o myorg 

the same au-syd region (if dashboard ui link is: http://console.au-syd.bluemix.net)

cf api https://api.au-syd.bluemix.net cf login -u bluemix_id -o myorg 

you can know region, org , space set typing:

cf target 

Comments