About 2,580,000 results
Open links in new tab
  1. How do I force SSH to use password instead of key?

    Nov 17, 2018 · So I need to log in to a machine using a password instead of a key, which I practically never do. Seems it should be easy but nope, ssh refuses to use anything but a key. …

  2. 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 …

  3. 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 …

  4. What is the difference between /etc/ssh/ and ~/.ssh?

    Apr 23, 2018 · When you connect to an SSH server, you identify yourself to the server (using either your login and password, or a key), and the server identifies itself to you, using its host …

  5. How to fix "ssh: connect to host github.com port 22: Connection …

    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 …

  6. 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 …

  7. openssh - How to ssh to remote server using a private key? - Unix ...

    However, I would be creating a bash script from server 1 that will execute some commands on server 2 via SSH. How do I SSH to Server 2 using my private key file from Server 1?

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

    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 > …

  9. 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 …

  10. ssh - Setting up OpenSSH for Windows using public key …

    I am having issues setting up OpenSSH for Windows, using public key authentication. I have this working on my local desktop and can ssh with a key from Unix machines or other OpenSSH …