Maria Alabyan
Maria Alabyan

Reputation: 93

Heroku CLI hangs on Windows 10

I use Heroku CLI on Windows 10. The first day after installing it works just fine, but on the next day (or so) it just hangs after launch:

C:\Users\{User}>heroku

and that's all. No output to console, no logs (no error.log). It lasts forever (not 120 sec like here: Heroku CLI Unresponsive)

I reinstalled CLI on 10.10.2017. Today is 14.10, my folder contains the following files: folder view before cleaning The autoupdate.log contains:

[2017-10-10T13:36:14+03:00] starting `C:\Program Files (x86)\Heroku\bin\\heroku.cmd update --autoupdate` from
heroku-cli: Updating CLI... already on latest version: 6.14.34-1fcf80e
heroku-cli: Updating plugins... done
[2017-10-11T22:36:40+03:00] starting `C:\Program Files (x86)\Heroku\bin\\heroku.cmd update --autoupdate` from logs
heroku-cli: Updating CLI... already on latest version: 6.14.34-1fcf80e
heroku-cli: Updating plugins... Waiting for all commands to finish
heroku-cli: Updating plugins... done
[2017-10-14T01:13:34+03:00] starting `C:\Program Files (x86)\Heroku\bin\\heroku.cmd update --autoupdate` from logs
heroku-cli: Updating CLI... already on latest version: 6.14.34-1fcf80e
heroku-cli: Updating plugins... Waiting for all commands to finish

What have I tried:

After deleting the folder and running command 'heroku update' the following files & folders were created, but console still hangs: folder view after cleaning

The autoupdate.log consists now of 1 line:

[2017-10-14T19:39:02+03:00] starting `C:\Program Files (x86)\Heroku\bin\\heroku.cmd update --autoupdate` from update

I waited for an hour since and now writing this question here. Has anyone faced such an issue? What can be done?

Update Finally I made it work after a few days by reinstalling CLI several times and deleting the autoupdate files, but cannot say precisely which of my actions had true effect. If you face the same issue you can start with the Malik`s answer.

Upvotes: 9

Views: 7239

Answers (5)

Dexter Bengil
Dexter Bengil

Reputation: 6625

I encountered the same problem when I run $ heroku login on GitBash for Windows.

I tried the accepted answer but to no avail. What solved it, was just to use Windows Command Prompt instead of GitBash and all problems were solved.

I'm just adding this answer here in case someone has done the same thing like I did.

Upvotes: 15

Ricardo Tovar
Ricardo Tovar

Reputation: 1

Usin CMD git for heroku login. I had to do the other steps using the bash and all was perfect.

Upvotes: 0

MattG
MattG

Reputation: 6445

I got the same symptom because I was behind a proxy but did not set the proxy env vars.

export HTTP_PROXY=http://proxy.server.com:portnumber
export HTTPS_PROXY=https://proxy.server.com:portnumber
heroku login

Upvotes: 0

M. Chavoshi
M. Chavoshi

Reputation: 1021

Using GitCMD instead of GitBash solved the problem for me.

Upvotes: 4

Malik
Malik

Reputation: 3680

I had the same issue and i followed these steps to fix it.

  1. Go to heroku AppData directory. (windows run %LOCALAPPDATA%\heroku)
  2. You should see 2 files named as autoupdate and a directory named as update.lock.
  3. Delete these 2 files and the directory.
  4. Open a new cmd window.
  5. Try running the heroku cmd again. Now it should work for you.

I use following version

  • heroku-cli/6.14.36 , (windows-x64) , node-v8.9.0.

Relevant github issue thread

Upvotes: 3

Related Questions