SSH: Permission denied (publickey,gssapi-with-mic,password)ssh authentication nfsHow do you manage ssh keys to add a second user?SSH accepts publickey authetication but won't connect with an identify file?Cannot SSH into Ubunto 10.10 running on EC2 as new userOpenSSH disable ControlMaster for given hostnameProblems with SSHCan't SSH into Amazon EC2AWS :: Ubuntu instance consistently denying my private keysHow to properly use rsync Push with SSH on local macOS to remote Debian

LocalDate.plus Incorrect Answer

Is it a Munchausen Number?

What does i386 mean on macOS Mojave?

How does Howard Stark know this?

Washer drain pipe overflow

Can 'sudo apt-get remove [write]' destroy my Ubuntu?

"Right on the tip of my tongue" meaning?

stdout and stderr redirection to different files

Two researchers want to work on the same extension to my paper. Who to help?

Are there variations of the regular runtimes of the Big-O-Notation?

How do I tell my supervisor that he is choosing poor replacements for me while I am on maternity leave?

Why does "decimal.TryParse()" always return 0 for the input string "-1" in the below code?

Unit Test - Testing API Methods

How to select certain lines (n, n+4, n+8, n+12...) from the file?

How did Thanos not realise this had happened at the end of Endgame?

What food production methods would allow a metropolis like New York to become self sufficient

Can I use my laptop, which says 240V, in the USA?

the lecture's place or where the lecture takes place

Drawing perpendicular lines, filling areas

Why was the Ancient One so hesitant to teach Dr. Strange the art of sorcery?

Should these notes be played as a chord or one after another?

Is a diamond sword feasible?

Remove everything except csv file Bash Script

Can you book a one-way ticket to the UK on a visa?



SSH: Permission denied (publickey,gssapi-with-mic,password)


ssh authentication nfsHow do you manage ssh keys to add a second user?SSH accepts publickey authetication but won't connect with an identify file?Cannot SSH into Ubunto 10.10 running on EC2 as new userOpenSSH disable ControlMaster for given hostnameProblems with SSHCan't SSH into Amazon EC2AWS :: Ubuntu instance consistently denying my private keysHow to properly use rsync Push with SSH on local macOS to remote Debian






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








13















====================================================================



UPDATE:
It turned out the configuration of sshd on host2 wont allow password
login. Thanks to people answered this.



====================================================================



Scenario:
Working with a company for my college project.
I need to use PuTTy to SSH into host1 first, and from there SSH into host2 (see below).
I was given a username and password on host2.



I do not have access of host2 at all, so I have no knowledge of its sshd_config.



This is what happened when I was trying to SSH into host2 from host1 :



ff@host1:~$ ssh -v host2
OpenSSH_5.1p1 Debian-5, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /home/ff/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host2 [192.*.*.*] port 22.
debug1: Connection established.
debug1: identity file /home/ff/.ssh/identity type -1
debug1: identity file /home/ff/.ssh/id_rsa type -1
debug1: identity file /home/ff/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.1p1 Debian-5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'sd01' is known and matches the RSA host key.
debug1: Found key in /home/ff/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information


debug1: Next authentication method: publickey
debug1: Trying private key: /home/ff/.ssh/identity
debug1: Trying private key: /home/ff/.ssh/id_rsa
debug1: Trying private key: /home/ff/.ssh/id_dsa
debug1: Next authentication method: password
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: No more authentication methods to try.
Permission denied (publickey,gssapi-with-mic,password).


and my /home/ff/.ssh/config :



Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# HostbasedAuthentication no
BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# AuthorizedKeysFile .ssh/authorized_keys
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no


I wonder is there anything I can do before go to the company.










share|improve this question
























  • is the username "ff" on host 2 correct?

    – etagenklo
    May 23 '14 at 11:52











  • @etagenklo yeah that's what I was given.

    – gherkin
    May 23 '14 at 12:21












  • You should ask the administrator of host2.

    – jornane
    May 23 '14 at 16:25











  • I had the same issue. I think the cause is that I had something set up wrong in the user's $HOME/.ssh folder. After mv $HOME/.ssh $HOME/.ssh.hide I could log in using ssh password

    – JackBauer35
    May 27 '15 at 20:51

















13















====================================================================



UPDATE:
It turned out the configuration of sshd on host2 wont allow password
login. Thanks to people answered this.



====================================================================



Scenario:
Working with a company for my college project.
I need to use PuTTy to SSH into host1 first, and from there SSH into host2 (see below).
I was given a username and password on host2.



I do not have access of host2 at all, so I have no knowledge of its sshd_config.



This is what happened when I was trying to SSH into host2 from host1 :



ff@host1:~$ ssh -v host2
OpenSSH_5.1p1 Debian-5, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /home/ff/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host2 [192.*.*.*] port 22.
debug1: Connection established.
debug1: identity file /home/ff/.ssh/identity type -1
debug1: identity file /home/ff/.ssh/id_rsa type -1
debug1: identity file /home/ff/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.1p1 Debian-5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'sd01' is known and matches the RSA host key.
debug1: Found key in /home/ff/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information


debug1: Next authentication method: publickey
debug1: Trying private key: /home/ff/.ssh/identity
debug1: Trying private key: /home/ff/.ssh/id_rsa
debug1: Trying private key: /home/ff/.ssh/id_dsa
debug1: Next authentication method: password
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: No more authentication methods to try.
Permission denied (publickey,gssapi-with-mic,password).


and my /home/ff/.ssh/config :



Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# HostbasedAuthentication no
BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# AuthorizedKeysFile .ssh/authorized_keys
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no


I wonder is there anything I can do before go to the company.










share|improve this question
























  • is the username "ff" on host 2 correct?

    – etagenklo
    May 23 '14 at 11:52











  • @etagenklo yeah that's what I was given.

    – gherkin
    May 23 '14 at 12:21












  • You should ask the administrator of host2.

    – jornane
    May 23 '14 at 16:25











  • I had the same issue. I think the cause is that I had something set up wrong in the user's $HOME/.ssh folder. After mv $HOME/.ssh $HOME/.ssh.hide I could log in using ssh password

    – JackBauer35
    May 27 '15 at 20:51













13












13








13


3






====================================================================



UPDATE:
It turned out the configuration of sshd on host2 wont allow password
login. Thanks to people answered this.



====================================================================



Scenario:
Working with a company for my college project.
I need to use PuTTy to SSH into host1 first, and from there SSH into host2 (see below).
I was given a username and password on host2.



I do not have access of host2 at all, so I have no knowledge of its sshd_config.



This is what happened when I was trying to SSH into host2 from host1 :



ff@host1:~$ ssh -v host2
OpenSSH_5.1p1 Debian-5, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /home/ff/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host2 [192.*.*.*] port 22.
debug1: Connection established.
debug1: identity file /home/ff/.ssh/identity type -1
debug1: identity file /home/ff/.ssh/id_rsa type -1
debug1: identity file /home/ff/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.1p1 Debian-5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'sd01' is known and matches the RSA host key.
debug1: Found key in /home/ff/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information


debug1: Next authentication method: publickey
debug1: Trying private key: /home/ff/.ssh/identity
debug1: Trying private key: /home/ff/.ssh/id_rsa
debug1: Trying private key: /home/ff/.ssh/id_dsa
debug1: Next authentication method: password
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: No more authentication methods to try.
Permission denied (publickey,gssapi-with-mic,password).


and my /home/ff/.ssh/config :



Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# HostbasedAuthentication no
BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# AuthorizedKeysFile .ssh/authorized_keys
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no


I wonder is there anything I can do before go to the company.










share|improve this question
















====================================================================



UPDATE:
It turned out the configuration of sshd on host2 wont allow password
login. Thanks to people answered this.



====================================================================



Scenario:
Working with a company for my college project.
I need to use PuTTy to SSH into host1 first, and from there SSH into host2 (see below).
I was given a username and password on host2.



I do not have access of host2 at all, so I have no knowledge of its sshd_config.



This is what happened when I was trying to SSH into host2 from host1 :



ff@host1:~$ ssh -v host2
OpenSSH_5.1p1 Debian-5, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /home/ff/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to host2 [192.*.*.*] port 22.
debug1: Connection established.
debug1: identity file /home/ff/.ssh/identity type -1
debug1: identity file /home/ff/.ssh/id_rsa type -1
debug1: identity file /home/ff/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_4.3
debug1: match: OpenSSH_4.3 pat OpenSSH_4*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.1p1 Debian-5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'sd01' is known and matches the RSA host key.
debug1: Found key in /home/ff/.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure. Minor code may provide more information


debug1: Next authentication method: publickey
debug1: Trying private key: /home/ff/.ssh/identity
debug1: Trying private key: /home/ff/.ssh/id_rsa
debug1: Trying private key: /home/ff/.ssh/id_dsa
debug1: Next authentication method: password
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
Permission denied, please try again.
ff@sd01's password:
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: No more authentication methods to try.
Permission denied (publickey,gssapi-with-mic,password).


and my /home/ff/.ssh/config :



Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# HostbasedAuthentication no
BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# AuthorizedKeysFile .ssh/authorized_keys
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no


I wonder is there anything I can do before go to the company.







ssh ssh-agent






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '15 at 10:32







gherkin

















asked May 23 '14 at 11:36









gherkingherkin

176116




176116












  • is the username "ff" on host 2 correct?

    – etagenklo
    May 23 '14 at 11:52











  • @etagenklo yeah that's what I was given.

    – gherkin
    May 23 '14 at 12:21












  • You should ask the administrator of host2.

    – jornane
    May 23 '14 at 16:25











  • I had the same issue. I think the cause is that I had something set up wrong in the user's $HOME/.ssh folder. After mv $HOME/.ssh $HOME/.ssh.hide I could log in using ssh password

    – JackBauer35
    May 27 '15 at 20:51

















  • is the username "ff" on host 2 correct?

    – etagenklo
    May 23 '14 at 11:52











  • @etagenklo yeah that's what I was given.

    – gherkin
    May 23 '14 at 12:21












  • You should ask the administrator of host2.

    – jornane
    May 23 '14 at 16:25











  • I had the same issue. I think the cause is that I had something set up wrong in the user's $HOME/.ssh folder. After mv $HOME/.ssh $HOME/.ssh.hide I could log in using ssh password

    – JackBauer35
    May 27 '15 at 20:51
















is the username "ff" on host 2 correct?

– etagenklo
May 23 '14 at 11:52





is the username "ff" on host 2 correct?

– etagenklo
May 23 '14 at 11:52













@etagenklo yeah that's what I was given.

– gherkin
May 23 '14 at 12:21






@etagenklo yeah that's what I was given.

– gherkin
May 23 '14 at 12:21














You should ask the administrator of host2.

– jornane
May 23 '14 at 16:25





You should ask the administrator of host2.

– jornane
May 23 '14 at 16:25













I had the same issue. I think the cause is that I had something set up wrong in the user's $HOME/.ssh folder. After mv $HOME/.ssh $HOME/.ssh.hide I could log in using ssh password

– JackBauer35
May 27 '15 at 20:51





I had the same issue. I think the cause is that I had something set up wrong in the user's $HOME/.ssh folder. After mv $HOME/.ssh $HOME/.ssh.hide I could log in using ssh password

– JackBauer35
May 27 '15 at 20:51










10 Answers
10






active

oldest

votes


















8














The username and password you are trying are not accepted by the host. That means either you are connecting to the wrong server, or the username or password is incorrect. You should ask the administrator to check the logs on host2, that should tell you which of the three is the case.






share|improve this answer


















  • 2





    It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

    – skyw00lker
    Oct 28 '16 at 14:55











  • @skyw00lker That's the reason I personally use alphanumeric passwords.

    – kasperd
    Oct 28 '16 at 20:17


















4














First



 chmod 700 .ssh


and then :



 chmod 600 .ssh/authorized_keys


and test this :



restorecon -r -vv .ssh/authorized_keys





share|improve this answer






























    2














    In my case, It was caused by encryption of the home directory. I have changed the location of the ssh keys and it resolved the issue : (Web Archive copy)
    http://tweaktheserver.com/ssh-cant-connect-authentications-that-can-continue-publickeygssapi-keyexgssapi-with-micpassword/






    share|improve this answer




















    • 2





      Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

      – Deer Hunter
      Apr 20 '15 at 6:11











    • Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

      – Mark Henderson
      Apr 20 '15 at 6:26











    • thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

      – user173141
      Apr 26 '15 at 5:45











    • @DeerHunter was prophetic: link rotted

      – Riet
      Feb 5 '16 at 23:34











    • @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

      – Deer Hunter
      Feb 5 '16 at 23:42


















    1














    GSSAPI authentication seems to be enabled in the client, yet it fails and falls back to password authentication. If you cannot login with supplied login and password, then the only sensible thing to do is to contact someone responsible for managing the server (the "company").






    share|improve this answer






























      1














      I had the same problem, but the issue for me was that the default configuration of the operating system (CentOS 7) was to encrypt the user directory, so that the authorized_keys file placed in ~/.ssh/ would not work. The solution came from here but basically:



      1. in /etc/ssh/sshd_config set the AuthorizedKeysFile property to something outside of the user's directory (/etc/ssh/authorized_keys)

      2. restart the sshd service





      share|improve this answer






























        0














        try:

        ssh server -p port -o PreferredAuthentications=publickey






        share|improve this answer























        • please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

          – Phillip -Zyan K Lee- Stockmann
          May 1 at 19:26



















        -1














        I needed to give /home/ec2-user permissions 700:



        chmod -R 700 /home/ec2-user/





        share|improve this answer























        • Why the vote to delete?

          – duhaime
          Nov 7 '18 at 21:23


















        -1














        Let me add that you should ensure that the key belongs to your user.



        Type ls -la to see which user your key belongs to.



        You can change the ownership:



        sudo chown ubuntu:root myKey //If you are using ubuntu.


        Also ensure:



        • You are using the correct .pem key if using linux (putty is different)

        • You have set the correct key permissions: sudo chmod 400 mykey.pem

        • You are using the correct username: ssh -i mykey user@instanceip





        share|improve this answer
































          -2














          You can try



          ssh server -l user -o "PubkeyAuthentication=no"


          OR in /etc/ssh/sshd_config, add/modify the property



          PermitRootLogin yes





          share|improve this answer























          • ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

            – Adriano
            Apr 11 '17 at 12:03



















          -2














          $ ssh Vagrant@192.168.33.11 -i .vagrant/machines/default/virtualbox/private_key



          This worked for me






          share|improve this answer





















            protected by womble May 1 at 23:22



            Thank you for your interest in this question.
            Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



            Would you like to answer one of these unanswered questions instead?














            10 Answers
            10






            active

            oldest

            votes








            10 Answers
            10






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            8














            The username and password you are trying are not accepted by the host. That means either you are connecting to the wrong server, or the username or password is incorrect. You should ask the administrator to check the logs on host2, that should tell you which of the three is the case.






            share|improve this answer


















            • 2





              It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

              – skyw00lker
              Oct 28 '16 at 14:55











            • @skyw00lker That's the reason I personally use alphanumeric passwords.

              – kasperd
              Oct 28 '16 at 20:17















            8














            The username and password you are trying are not accepted by the host. That means either you are connecting to the wrong server, or the username or password is incorrect. You should ask the administrator to check the logs on host2, that should tell you which of the three is the case.






            share|improve this answer


















            • 2





              It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

              – skyw00lker
              Oct 28 '16 at 14:55











            • @skyw00lker That's the reason I personally use alphanumeric passwords.

              – kasperd
              Oct 28 '16 at 20:17













            8












            8








            8







            The username and password you are trying are not accepted by the host. That means either you are connecting to the wrong server, or the username or password is incorrect. You should ask the administrator to check the logs on host2, that should tell you which of the three is the case.






            share|improve this answer













            The username and password you are trying are not accepted by the host. That means either you are connecting to the wrong server, or the username or password is incorrect. You should ask the administrator to check the logs on host2, that should tell you which of the three is the case.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered May 23 '14 at 13:18









            kasperdkasperd

            26.8k1252104




            26.8k1252104







            • 2





              It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

              – skyw00lker
              Oct 28 '16 at 14:55











            • @skyw00lker That's the reason I personally use alphanumeric passwords.

              – kasperd
              Oct 28 '16 at 20:17












            • 2





              It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

              – skyw00lker
              Oct 28 '16 at 14:55











            • @skyw00lker That's the reason I personally use alphanumeric passwords.

              – kasperd
              Oct 28 '16 at 20:17







            2




            2





            It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

            – skyw00lker
            Oct 28 '16 at 14:55





            It's like could you be any more stupid, ofc I have the right passwords. And then you remember different keyboard layouts. Thanks for making me revisit :)

            – skyw00lker
            Oct 28 '16 at 14:55













            @skyw00lker That's the reason I personally use alphanumeric passwords.

            – kasperd
            Oct 28 '16 at 20:17





            @skyw00lker That's the reason I personally use alphanumeric passwords.

            – kasperd
            Oct 28 '16 at 20:17













            4














            First



             chmod 700 .ssh


            and then :



             chmod 600 .ssh/authorized_keys


            and test this :



            restorecon -r -vv .ssh/authorized_keys





            share|improve this answer



























              4














              First



               chmod 700 .ssh


              and then :



               chmod 600 .ssh/authorized_keys


              and test this :



              restorecon -r -vv .ssh/authorized_keys





              share|improve this answer

























                4












                4








                4







                First



                 chmod 700 .ssh


                and then :



                 chmod 600 .ssh/authorized_keys


                and test this :



                restorecon -r -vv .ssh/authorized_keys





                share|improve this answer













                First



                 chmod 700 .ssh


                and then :



                 chmod 600 .ssh/authorized_keys


                and test this :



                restorecon -r -vv .ssh/authorized_keys






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Sep 3 '17 at 10:40









                Ali ZemaniAli Zemani

                412




                412





















                    2














                    In my case, It was caused by encryption of the home directory. I have changed the location of the ssh keys and it resolved the issue : (Web Archive copy)
                    http://tweaktheserver.com/ssh-cant-connect-authentications-that-can-continue-publickeygssapi-keyexgssapi-with-micpassword/






                    share|improve this answer




















                    • 2





                      Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

                      – Deer Hunter
                      Apr 20 '15 at 6:11











                    • Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

                      – Mark Henderson
                      Apr 20 '15 at 6:26











                    • thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

                      – user173141
                      Apr 26 '15 at 5:45











                    • @DeerHunter was prophetic: link rotted

                      – Riet
                      Feb 5 '16 at 23:34











                    • @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

                      – Deer Hunter
                      Feb 5 '16 at 23:42















                    2














                    In my case, It was caused by encryption of the home directory. I have changed the location of the ssh keys and it resolved the issue : (Web Archive copy)
                    http://tweaktheserver.com/ssh-cant-connect-authentications-that-can-continue-publickeygssapi-keyexgssapi-with-micpassword/






                    share|improve this answer




















                    • 2





                      Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

                      – Deer Hunter
                      Apr 20 '15 at 6:11











                    • Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

                      – Mark Henderson
                      Apr 20 '15 at 6:26











                    • thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

                      – user173141
                      Apr 26 '15 at 5:45











                    • @DeerHunter was prophetic: link rotted

                      – Riet
                      Feb 5 '16 at 23:34











                    • @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

                      – Deer Hunter
                      Feb 5 '16 at 23:42













                    2












                    2








                    2







                    In my case, It was caused by encryption of the home directory. I have changed the location of the ssh keys and it resolved the issue : (Web Archive copy)
                    http://tweaktheserver.com/ssh-cant-connect-authentications-that-can-continue-publickeygssapi-keyexgssapi-with-micpassword/






                    share|improve this answer















                    In my case, It was caused by encryption of the home directory. I have changed the location of the ssh keys and it resolved the issue : (Web Archive copy)
                    http://tweaktheserver.com/ssh-cant-connect-authentications-that-can-continue-publickeygssapi-keyexgssapi-with-micpassword/







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Feb 6 '16 at 20:41









                    Deer Hunter

                    90841625




                    90841625










                    answered Apr 20 '15 at 5:54









                    user173141user173141

                    6717




                    6717







                    • 2





                      Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

                      – Deer Hunter
                      Apr 20 '15 at 6:11











                    • Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

                      – Mark Henderson
                      Apr 20 '15 at 6:26











                    • thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

                      – user173141
                      Apr 26 '15 at 5:45











                    • @DeerHunter was prophetic: link rotted

                      – Riet
                      Feb 5 '16 at 23:34











                    • @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

                      – Deer Hunter
                      Feb 5 '16 at 23:42












                    • 2





                      Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

                      – Deer Hunter
                      Apr 20 '15 at 6:11











                    • Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

                      – Mark Henderson
                      Apr 20 '15 at 6:26











                    • thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

                      – user173141
                      Apr 26 '15 at 5:45











                    • @DeerHunter was prophetic: link rotted

                      – Riet
                      Feb 5 '16 at 23:34











                    • @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

                      – Deer Hunter
                      Feb 5 '16 at 23:42







                    2




                    2





                    Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

                    – Deer Hunter
                    Apr 20 '15 at 6:11





                    Please add the essence of the solution into your answer. Link-only answers are susceptible to link rot.

                    – Deer Hunter
                    Apr 20 '15 at 6:11













                    Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

                    – Mark Henderson
                    Apr 20 '15 at 6:26





                    Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

                    – Mark Henderson
                    Apr 20 '15 at 6:26













                    thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

                    – user173141
                    Apr 26 '15 at 5:45





                    thanks for your suggestions. I understand that a working link can be a '404 error' in future and it is important to mention the points in the answer itself. I have edited my answer as well.

                    – user173141
                    Apr 26 '15 at 5:45













                    @DeerHunter was prophetic: link rotted

                    – Riet
                    Feb 5 '16 at 23:34





                    @DeerHunter was prophetic: link rotted

                    – Riet
                    Feb 5 '16 at 23:34













                    @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

                    – Deer Hunter
                    Feb 5 '16 at 23:42





                    @Riet - edit suggested. All is not lost. Meanwhile you can visit the captured copy of the page.

                    – Deer Hunter
                    Feb 5 '16 at 23:42











                    1














                    GSSAPI authentication seems to be enabled in the client, yet it fails and falls back to password authentication. If you cannot login with supplied login and password, then the only sensible thing to do is to contact someone responsible for managing the server (the "company").






                    share|improve this answer



























                      1














                      GSSAPI authentication seems to be enabled in the client, yet it fails and falls back to password authentication. If you cannot login with supplied login and password, then the only sensible thing to do is to contact someone responsible for managing the server (the "company").






                      share|improve this answer

























                        1












                        1








                        1







                        GSSAPI authentication seems to be enabled in the client, yet it fails and falls back to password authentication. If you cannot login with supplied login and password, then the only sensible thing to do is to contact someone responsible for managing the server (the "company").






                        share|improve this answer













                        GSSAPI authentication seems to be enabled in the client, yet it fails and falls back to password authentication. If you cannot login with supplied login and password, then the only sensible thing to do is to contact someone responsible for managing the server (the "company").







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered May 23 '14 at 11:51









                        phoopsphoops

                        1,78341523




                        1,78341523





















                            1














                            I had the same problem, but the issue for me was that the default configuration of the operating system (CentOS 7) was to encrypt the user directory, so that the authorized_keys file placed in ~/.ssh/ would not work. The solution came from here but basically:



                            1. in /etc/ssh/sshd_config set the AuthorizedKeysFile property to something outside of the user's directory (/etc/ssh/authorized_keys)

                            2. restart the sshd service





                            share|improve this answer



























                              1














                              I had the same problem, but the issue for me was that the default configuration of the operating system (CentOS 7) was to encrypt the user directory, so that the authorized_keys file placed in ~/.ssh/ would not work. The solution came from here but basically:



                              1. in /etc/ssh/sshd_config set the AuthorizedKeysFile property to something outside of the user's directory (/etc/ssh/authorized_keys)

                              2. restart the sshd service





                              share|improve this answer

























                                1












                                1








                                1







                                I had the same problem, but the issue for me was that the default configuration of the operating system (CentOS 7) was to encrypt the user directory, so that the authorized_keys file placed in ~/.ssh/ would not work. The solution came from here but basically:



                                1. in /etc/ssh/sshd_config set the AuthorizedKeysFile property to something outside of the user's directory (/etc/ssh/authorized_keys)

                                2. restart the sshd service





                                share|improve this answer













                                I had the same problem, but the issue for me was that the default configuration of the operating system (CentOS 7) was to encrypt the user directory, so that the authorized_keys file placed in ~/.ssh/ would not work. The solution came from here but basically:



                                1. in /etc/ssh/sshd_config set the AuthorizedKeysFile property to something outside of the user's directory (/etc/ssh/authorized_keys)

                                2. restart the sshd service






                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Aug 18 '15 at 0:25









                                Anatoly GeyfmanAnatoly Geyfman

                                112




                                112





















                                    0














                                    try:

                                    ssh server -p port -o PreferredAuthentications=publickey






                                    share|improve this answer























                                    • please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

                                      – Phillip -Zyan K Lee- Stockmann
                                      May 1 at 19:26
















                                    0














                                    try:

                                    ssh server -p port -o PreferredAuthentications=publickey






                                    share|improve this answer























                                    • please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

                                      – Phillip -Zyan K Lee- Stockmann
                                      May 1 at 19:26














                                    0












                                    0








                                    0







                                    try:

                                    ssh server -p port -o PreferredAuthentications=publickey






                                    share|improve this answer













                                    try:

                                    ssh server -p port -o PreferredAuthentications=publickey







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered May 1 at 12:30









                                    Alexandr VladimirovichAlexandr Vladimirovich

                                    1




                                    1












                                    • please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

                                      – Phillip -Zyan K Lee- Stockmann
                                      May 1 at 19:26


















                                    • please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

                                      – Phillip -Zyan K Lee- Stockmann
                                      May 1 at 19:26

















                                    please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

                                    – Phillip -Zyan K Lee- Stockmann
                                    May 1 at 19:26






                                    please be a little more verbose about why the OP should use your command and what it does. also using code styling for commands is deemed good style: ``

                                    – Phillip -Zyan K Lee- Stockmann
                                    May 1 at 19:26












                                    -1














                                    I needed to give /home/ec2-user permissions 700:



                                    chmod -R 700 /home/ec2-user/





                                    share|improve this answer























                                    • Why the vote to delete?

                                      – duhaime
                                      Nov 7 '18 at 21:23















                                    -1














                                    I needed to give /home/ec2-user permissions 700:



                                    chmod -R 700 /home/ec2-user/





                                    share|improve this answer























                                    • Why the vote to delete?

                                      – duhaime
                                      Nov 7 '18 at 21:23













                                    -1












                                    -1








                                    -1







                                    I needed to give /home/ec2-user permissions 700:



                                    chmod -R 700 /home/ec2-user/





                                    share|improve this answer













                                    I needed to give /home/ec2-user permissions 700:



                                    chmod -R 700 /home/ec2-user/






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Jun 29 '18 at 17:31









                                    duhaimeduhaime

                                    993




                                    993












                                    • Why the vote to delete?

                                      – duhaime
                                      Nov 7 '18 at 21:23

















                                    • Why the vote to delete?

                                      – duhaime
                                      Nov 7 '18 at 21:23
















                                    Why the vote to delete?

                                    – duhaime
                                    Nov 7 '18 at 21:23





                                    Why the vote to delete?

                                    – duhaime
                                    Nov 7 '18 at 21:23











                                    -1














                                    Let me add that you should ensure that the key belongs to your user.



                                    Type ls -la to see which user your key belongs to.



                                    You can change the ownership:



                                    sudo chown ubuntu:root myKey //If you are using ubuntu.


                                    Also ensure:



                                    • You are using the correct .pem key if using linux (putty is different)

                                    • You have set the correct key permissions: sudo chmod 400 mykey.pem

                                    • You are using the correct username: ssh -i mykey user@instanceip





                                    share|improve this answer





























                                      -1














                                      Let me add that you should ensure that the key belongs to your user.



                                      Type ls -la to see which user your key belongs to.



                                      You can change the ownership:



                                      sudo chown ubuntu:root myKey //If you are using ubuntu.


                                      Also ensure:



                                      • You are using the correct .pem key if using linux (putty is different)

                                      • You have set the correct key permissions: sudo chmod 400 mykey.pem

                                      • You are using the correct username: ssh -i mykey user@instanceip





                                      share|improve this answer



























                                        -1












                                        -1








                                        -1







                                        Let me add that you should ensure that the key belongs to your user.



                                        Type ls -la to see which user your key belongs to.



                                        You can change the ownership:



                                        sudo chown ubuntu:root myKey //If you are using ubuntu.


                                        Also ensure:



                                        • You are using the correct .pem key if using linux (putty is different)

                                        • You have set the correct key permissions: sudo chmod 400 mykey.pem

                                        • You are using the correct username: ssh -i mykey user@instanceip





                                        share|improve this answer















                                        Let me add that you should ensure that the key belongs to your user.



                                        Type ls -la to see which user your key belongs to.



                                        You can change the ownership:



                                        sudo chown ubuntu:root myKey //If you are using ubuntu.


                                        Also ensure:



                                        • You are using the correct .pem key if using linux (putty is different)

                                        • You have set the correct key permissions: sudo chmod 400 mykey.pem

                                        • You are using the correct username: ssh -i mykey user@instanceip






                                        share|improve this answer














                                        share|improve this answer



                                        share|improve this answer








                                        edited Nov 7 '18 at 19:10









                                        alexander.polomodov

                                        1,0503712




                                        1,0503712










                                        answered Nov 7 '18 at 14:48









                                        JPaulinoJPaulino

                                        99




                                        99





















                                            -2














                                            You can try



                                            ssh server -l user -o "PubkeyAuthentication=no"


                                            OR in /etc/ssh/sshd_config, add/modify the property



                                            PermitRootLogin yes





                                            share|improve this answer























                                            • ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

                                              – Adriano
                                              Apr 11 '17 at 12:03
















                                            -2














                                            You can try



                                            ssh server -l user -o "PubkeyAuthentication=no"


                                            OR in /etc/ssh/sshd_config, add/modify the property



                                            PermitRootLogin yes





                                            share|improve this answer























                                            • ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

                                              – Adriano
                                              Apr 11 '17 at 12:03














                                            -2












                                            -2








                                            -2







                                            You can try



                                            ssh server -l user -o "PubkeyAuthentication=no"


                                            OR in /etc/ssh/sshd_config, add/modify the property



                                            PermitRootLogin yes





                                            share|improve this answer













                                            You can try



                                            ssh server -l user -o "PubkeyAuthentication=no"


                                            OR in /etc/ssh/sshd_config, add/modify the property



                                            PermitRootLogin yes






                                            share|improve this answer












                                            share|improve this answer



                                            share|improve this answer










                                            answered Apr 11 '17 at 12:03









                                            AdrianoAdriano

                                            972




                                            972












                                            • ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

                                              – Adriano
                                              Apr 11 '17 at 12:03


















                                            • ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

                                              – Adriano
                                              Apr 11 '17 at 12:03

















                                            ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

                                            – Adriano
                                            Apr 11 '17 at 12:03






                                            ssh server -l user -o "PubkeyAuthentication=no" equal ssh user@server -o "PubkeyAuthentication=no"

                                            – Adriano
                                            Apr 11 '17 at 12:03












                                            -2














                                            $ ssh Vagrant@192.168.33.11 -i .vagrant/machines/default/virtualbox/private_key



                                            This worked for me






                                            share|improve this answer



























                                              -2














                                              $ ssh Vagrant@192.168.33.11 -i .vagrant/machines/default/virtualbox/private_key



                                              This worked for me






                                              share|improve this answer

























                                                -2












                                                -2








                                                -2







                                                $ ssh Vagrant@192.168.33.11 -i .vagrant/machines/default/virtualbox/private_key



                                                This worked for me






                                                share|improve this answer













                                                $ ssh Vagrant@192.168.33.11 -i .vagrant/machines/default/virtualbox/private_key



                                                This worked for me







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Mar 18 at 15:30









                                                karthik brkarthik br

                                                1




                                                1















                                                    protected by womble May 1 at 23:22



                                                    Thank you for your interest in this question.
                                                    Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).



                                                    Would you like to answer one of these unanswered questions instead?



                                                    Popular posts from this blog

                                                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                                                    What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                                                    Why did Thanos need his ship to help him in the battle scene?Which actor plays Thanos in the Avengers mid-credits scene?Are there economic implications portrayed in comics where the buildings and cities are ruined almost daily?Old X-Men comic where team travels to alien world with a ring-like sun that needs recharging?Why does Ego need help sleeping?Is there an objective answer to who “the strongest Avenger” is?How did Banner get unstuck?Why did Thanos get hit?How did Thanos (or anyone) know the Infinity Stones would give him this power?Did Thanos leave Eitri alive for his after-sales service?In Avengers 1, why does Thanos need Loki?