"Enter Heroku credentials" keeps coming up - heroku

I'm running Winfows 10 64-bit version. I've downloaded Heroku and registered for an account. I go to my Command Prompt and type in "heroku login." It displays the message "Enter Heroku credentials:, email:, and password:". I type in my email and password to my Heroku account and hit enter. No error messages come up or anything, just another line reading: "Enter Heroku credentials:, email:, and password:". Every time I try to retype in my email and password, it is the same result.
I then tried the command "heroku auth:token", and got the error message "Heroku not logged in".
I'm still new to Heroku, so if this is an easy fix please don't be too hard on me.

Related

Notarization over ssh fails: User interaction is not allowed

Connected via ssh and executing:
xcrun altool --notarize-app --primary-bundle-id com.example.app --username exam#ple.com --password #keychain:AC_PASSWORD --file app.dmg
results in:
2019-04-17 16:06:53.146 altool[4331:55219] *** Error: User interaction is not allowed.
The password has been stored in a temporary keychain with:
security add-generic-password -a "exam#ple.com" -s "AC_PASSWORD" -p "myPassword" -A "temp.keychain"
codesigning works with the temporary keychain trick: https://apple.stackexchange.com/questions/255872.
During creation of the temporary keychain, the AC_PASSWORD password item is added with the above command.
Executing the same command locally on the machine works.
I also tripped on this exact same issue. I think the solution can be found in this answer.
Specifically:
The first time you run altool, you get a security confirmation dialog asking you whether to allow altool to read the password. Enter your keychain password and click on Always allow.
You will need to login interactively and run the altool command as you would over ssh. When the confirmation pops, enter the keychain password and click "Always allow". You only have to go through this once after adding the password to the keychain.
I had a similar issue, getting the same error when using SSH to run security import for a cert. I'm working on scripts that should be able to run over Ansible without user interaction, so I want to avoid one-time manual steps for each script.
You don't know which information the tool is trying to prompt for (password, passphrase, etc.) because the error is generic, so by connecting over VNC for an interactive session and then running the command manually in Terminal, you can see see the prompt and learn what the problem is. (For me, a missing certificate passphrase.)
Related post: Xcode, Codesign Error from Jenkins / SSH - "User Interaction is not allowed"

Piping password to kinit on a windows server

We are setting up a system where we need to re-verify a user's identify before he/she is allowed to perform a specific task. The user enters his/her password into the website, and then PHP runs kinit to verify that the password is correct. We use Kerberos for authentication. This is what we successfully tried on a Linux server:
echo "password123" | kinit username#REALM.COM
The problem is that the system is running on a Windows server. We have installed kinit, but cannot seem to get the same thing to work. Running that same command, with or without the quotes, just gives us this output:
kinit: Generic preauthentication failure while getting initial credentials
Any suggestions on what could be done here?
Edit:
Running simply "kinit" and then entering the password at the prompt, works well.

Unable to log in to heroku through CLI

My password for heroku works in the browser but not in the CLI. I've changed my heroku password twice and the same outcome occur after every change: I can log in through my browser, but not through my CLI (using windows powershell if that matters). Here is the error I get in the CL:
PS C:\Users\rjfor\OneDrive\Documents\beyond basics\python projects\webpages\mysite> heroku login
heroku: Enter your login credentials
Email [4workanswers#gmail.com]: y
Password: *********
» Error: Invalid credentials provided.
»
» Error ID: unauthorized
PS C:\Users\rjfor\OneDrive\Documents\beyond basics\python projects\webpages\mysite> heroku login
heroku: Enter your login credentials
Email [4workanswers#gmail.com]: y
Password: *********
» Error: Invalid credentials provided.
»
» Error ID: unauthorized
Has anyone had a similar issue?
Irrespective of what you get on screen please enter the listed below commands.
heroku --version
heroku login
When it ask for the email-d please write 4workanswers#gmail.com (your email id) not y even if it's showing your email on screen
Now enter your password(make sure you type it correctly)
One advice while entering your password. First type your password in a Notepad/gedit/TextEdit than switch browser and open heroku login and than paste the password from the Notepad/gedit/TextEdit. Do it same in terminal/cmd when it ask for password don't write just paste using mouse right click(Primary).
Just to try!!!Update heroku to the latest version
You are typing in y as your email. If you just want to reuse the previous email you just press enter or type in the full email again.

heroku login on mac terminal how to

We are new with Heroku.
I have installed the toolbelt on OSx.
I go to terminal which shows MacBook-Pro-de-Francisco-Balarezo:~ francisco$
I input $heroku login and i get login: that refers to mac user credentials not heroku.
I understand this is a basic stuff, we are doing our fisrt steps.
Any help would be appreciated
To login to Herok issue heroku login from the command line. Enter your Herkou email / username. Press enter, then your Heroku password.
macbook-austin:~ aus$ heroku login
Enter your Heroku credentials.
Email: heroku.account#email.com
Password (typing will be hidden): yourpassword
Authentication successful.
macbook-austin:~ aus$
Now you can run other heroku commands that require authentication.
The only reason heroku would be asking for your OS X credentials would be if you were running it with sudo or it was needing root access. This shouldn't be the case.

Rsync error. Could not start Rsync service on Local Computer

I am facing a problem:
Could not start Rsync service on Local Computer.
Error 1069: The service did not start due to a logon failure.
Can some body please help me on this?
During the installation, you may have seen where it prompted for a user-name and password with the default user-name and password already typed in. You need to change this to that of the user you are logged in as. If you are logged in as administrator then enter the admin credential

Resources