Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App name is free but heroku apps:create says it is taken. How to get a name?

Tags:

heroku

When I type:

heroku apps:create myapp

I get an answer:

 !    Name is already taken

When I go to the url http://myapp.herokuapp.com/ it says that Heroku doesn't have such an app:

enter image description here

Is this some bug? How may I take the name?

UPD

Of course "myapp" is for an example name here. Of course I provide different name to Heroku when I try to register. And for that different name I get such a response.

like image 986
Green Avatar asked Apr 25 '13 21:04

Green


People also ask

How do I name my Heroku app?

Renaming an application If you want to change the application name from outside the Git checkout or application folder, you can type the following command: $ heroku apps:rename newname --app oldname http://newname.heroku.com/ ...

Are Heroku app names unique?

After a second or two, Heroku will have created a new app and have chosen a random name for it. This ensures that your app name is globally unique across the entire Heroku platform, making it possible to use the app name as a part of your domain name.

How many Heroku apps can I have for free?

A 'Free' tier Heroku account allows up to 5 apps.

Can I host my app on Heroku for free?

Get started building your app for freeYour Heroku account is all you need to experience the entire Heroku platform, from free apps to the full range of paid services.


1 Answers

This error message means that somebody - ANYBODY - has already taken that app name. In this example "myapp" has already been taken. Try adding some additional letters to "myapp" such as "myapp-this-name-has-not-been-taken-yet"

Keep trying different names until the error message goes away.

like image 55
Mike Seiler Avatar answered Nov 08 '22 11:11

Mike Seiler