Heroku Toolbelt Fails Update

Updating To Heroku Toolbelt v4 gets Access Denied Error

I fixed this by deleting the folders Username/.heroku , and Username/AppData/Local/heroku, (Replace "Username" with your username) then run heroku login results in a successful install of node, after that it seems to work smoothly (so far). Probably deleting the first folder isn't necessary -- but that's what I did in any case.

Good luck

PS:
Running on Windows 8

Heroku toolbelt fails update

Heroku support finally helped me fix this. Long story short, if you're having this issue, just run:

$ rm -rf ~/.heroku/client

Then reinstall the Heroku Toolbelt from http://toolbelt.heroku.com

If you want the long answer, here you go:

There appear to be some edge cases where update ended up with some
incorrect data and it is somewhat more difficult to recover from this.
If you first delete the ~/.heroku/client directory and subsequently
run the installer you should end up with a working result.

Heroku toolbelt error

Almost 6 months later, I got the exact same issue on the first interaction with heroku, not a good start.

I used the command to verify the installation:

heroku --version

It probably needs some additional data downloading for the first start and installing/preparing heroku-cli.

I am behind a corporate firewall and git + npm are working perfectly fine (after one-time proxy configuration).

The issue resolved automatically after some time along with initial frustration and time consumption. Just shared my experience for any next user landing here until the issue is actually resolved.

Log File extract:

Heroku client internal error. getaddrinfo: No such host is known.
(SocketError)

.

.

.

Heroku client internal error. getaddrinfo: This is
usually a temporary error during hostname resolution and means that
the local server did not receive a response from an authoritative
server. (SocketError)

[cross posted partially on the given heroku git link, same like the original question and answer]

Heroku Toolbelt is currently updating issue

Instead of completely uninstalling and reinstalling, I deleted a file called "updating" in "C:\Users\Profile-name\.heroku" and it started responding to commands again

heroku fails to work (update error)

I think version 2.32.13 was bugged tried reinstalling it to no avail. I've redownloaded and got 2.32.14 reinstalling now...

Heroku toolbelt fails to run after last update

if you install the Heroku toolbelt again it should work.

Foreman, from the Heroku Toolbelt, exits with Error: write EINVAL every time

This isn't a very good solution, but I have figured out how to make foreman work. The instructions on the Getting Started page must be broken or out of date. Here's how I got foreman to work:

  1. Keep package.json the same.
  2. Delete web.js
  3. Create a standard Express app by running express my_app_name at the command line.
  4. Create an index.js file that imports Express's app.js and starts a server.
  5. Configure the Procfile to point to index.js.
  6. Run foreman start and it should work.

I don't know why this works and the previous steps did not. Good luck, future searchers, in your quest.



Related Topics



Leave a reply



Submit