-2

I am using the Java DB Web Starter boilerplate in IBM Bluemix. When I use it to create an app called SentimentAnalysisAPP, create fails with this error:

BXNUI2032E: An error occurred when contacting Cloud Foundry to create a resource. Resource: routes. Cloud Foundry message: "The host is taken: SentimentAnalysisAPP." See the Troubleshooting topics in the IBM Bluemix Documentation to check service status, review troubleshooting information, or for information about getting help.

What is wrong and how do I fix it?

RandalAnders
  • 1,431
  • 9
  • 16
PDH
  • 39
  • 2
  • 9

3 Answers3

3

Try naming your application something else. Bluemix will try to auto create the URL for your app based on what you type into the name of the app.

SentimentAnalysisAPP.mybluemix.net is already in use.

Pick a name that is more unique, like SentimentAnalysisPDHTest.

Ram Vennam
  • 3,536
  • 1
  • 12
  • 19
2

That means the URL "SentimentAnalysisAPP.mybluemix.net" has been taken by someone else.

You need to create a unique host for it.

If you are running cf cli version 6.4 or above, you can use --random-route to let system generate one for you. eg. cf push SentimentAnalysisAPP --random-route

0

Like @Ram Vennam said, the problem is that your app name (in this case, SentimentAnalysisAPP) is not unique, that another Bluemix user is already using that app name and URL.

This question is fairly common and has been answered before. You need to search for "BXNUI2032E" and "the host is taken". Then you'll find answers like these:

Community
  • 1
  • 1
Bobby Woolf
  • 707
  • 1
  • 6
  • 13