About 2,490,000 results
Open links in new tab
  1. How to access `/.ssh` directory in windows? - Stack Overflow

    Jun 28, 2022 · In my case, ssh-keygen generated the keys inside the current directory, not into the path it claimed to generate them in. I was also following these instructions and was quite confused as well.

  2. How do I force SSH to use password instead of key?

    Nov 17, 2018 · The ssh command will attempt all ssh keys before asking for a password as one can see when using the -v flag. Anyway, after playing enough with SSH, I figured that you can also set up a …

  3. ssh tunneling - How do I use the ssh -i option to specify a ssh keypair ...

    Jan 2, 2018 · 6 I need to connect to a SSH proxy server using a ssh keypair that I created specifically for it (not my default id_rsa keypair). I see from the ssh manual that there is a -i option that I can use to …

  4. How to fix "ssh: connect to host github.com port 22: Connection timed ...

    So I tried using an SSH connection made over the HTTPS port by editing the config file ~/.ssh/config but to no avail. Host github.com Hostname ssh.github.com Port 443 Finally, I found this article which …

  5. How to avoid being asked "Enter passphrase for key" when I'm doing …

    Dec 16, 2017 · Remote SSH login password would be enough in this case. I can speculate that this prevents adding your public key (which is paired with encrypted private key) without knowing …

  6. ssh - How to tell git which private key to use? - Super User

    ssh has the -i option to tell which private key file to use when authenticating: -i identity_file Selects a file from which the identity (private key) for RSA or DSA authentication is read. The default is …

  7. git - How to generate ssh keys (for github) - Stack Overflow

    May 6, 2017 · The command to run is only ssh-keygen -t rsa -C "[email protected]" All the rest beginning with line 2 of your script is the output of ssh-keygen. And replace [email protected] with …

  8. ssh - How to solve Permission denied (publickey) error when using Git ...

    In terminal enter this command with your ssh file name pbcopy < ~/.ssh/id_rsa.pub This will copy the file to your clipboard Now open you github account Go to Settings > SSH and GPG keys > New SSH …

  9. linux - ssh script returns 255 error - Stack Overflow

    Mar 18, 2016 · ssh: connect to host HOSTNAME port 22: Connection refused Check-list: What happens if you run the ssh command directly from the command line? Are you able to ping that machine? …

  10. How to forward X over SSH to run graphics applications remotely?

    If you run ssh and DISPLAY is not set, it means ssh is not forwarding the X11 connection. To confirm that ssh is forwarding X11, check for a line containing Requesting X11 forwarding in the output of ssh …