go error plugin when running heroku login on windows 10 - powershell

I just downloaded and updated Heroku, and then ran
> heroku login
in my PowerShell, but got the following error:
(node:1496) [UNKNOWN] Error Plugin: heroku: UNKNOWN: unknown error, open 'U:\_netrc'
Error occurred during reading netrc file: U:\_netrc
module: #oclif/config#1.13.2
task: runHook prerun
plugin: heroku
root: C:\Users\<myusername>\AppData\Local\heroku\client\7.59.2
See more details with DEBUG=*
Error: UNKNOWN: unknown error, open 'U:/_netrc'
I couldn't find much information about the error message, and would appreciate any insights or suggestions. Thank you!

Related

plugin exited before we could connect

i'm new to terraform, Can anyone help me understand why i'm getting the following error after
running terraform plan :
terraform plan:
Error: Error asking for user input: 3 error(s) occurred:
provider.aws: plugin exited before we could connect
provider.templat: plugin exited before we could connect
provider.local : plugin exited before we could connect
i'm using Terraform v0.11.1
Thanks in advance.

HTTP error 500 when trying to go to localhost/phpmyadmin on centos 8

when I'm trying to go to localhost/phpmyadmin then I'm getting HTTP error 500.i have installed PHP, PHP-MySQL, MySQL,apache...please help me to solve this problem.
Check your log
if you have this error
PHP Fatal error: Uncaught Error: Call to a member function getCookie() on null in /usr/share/phpmyadmin/libraries/classes/Url.php:217
Try to install php-json package
I hope this can be useful.

Why am I receiving error 0x80070643 trying to run aspnet_regiis for v2.0

I am trying to install .net v2.0 using "aspnet_regiis -i" ... and I keep getting this error: "Operation failed 0x80070643, fatal error doing installation".
any ideas of what i can do?

Capifony SSH Exception on windows - 998 error code

I am trying to setup Capifony to deploy on windows however when running cap deploy I get the following output.
Spec
ruby 2.0.0p481
capifony v2.7.0
The error message
servers: ["homestead.app"]
** [deploy:update_code] exception while rolling back: Capistrano::ConnectionError, connection failed for: homestead.app (Net::SSH::Exception: Creation of file mapping failed with error: 998) connection failed for: homestead.app (Net::SSH::Exception: Creation of file mapping failed with error: 998)
If I close down pageant this issue goes away however I require pageant to load the ssh key for the github repo as it required for doing a git ls-remote locally.
Any suggestions/workarounds?
Related issues found
https://github.com/test-kitchen/test-kitchen/issues/448
Resolved my issue by using an older version of ruby (Ruby 1.9.3-p545).

Auth GET failed: 500 Internal Server Error

i have problem with swift..when i execute swift -V 2.0 -A http://xxx.xxx.x.xx:5000/v2.0/ -U cookbook:demo -K openstack stat
and then this is output
Auth GET failed: http://xxx.xxx.x.xx:5000/v2.0/tokens 500 Internal Server Error
any solution for me? :)
I hit this error while execute 'swift list'.
Error: Account GET failed ... 503 Internal Server Error (first 60 chars of response)...
On swift storage node, check log '/var/log/swift/account-server.log', and get a piece of error message:[Errno 13] Permission denied '/srv/node/sdb1/accounts'
According to the error message, I found the root cause is that, on swift storage node, the swift user doesn't have permission on directory '/srv/node/'. Grant permission with CMD: chown -R swift:swift /srv/node
And the problem is solved. Hope this helpful.