About 1,760,000 results
Open links in new tab
  1. SSH error: Permission denied, please try again - Ask Ubuntu

    Sep 18, 2016 · SSH root login with password stopped to work after I generated ssh key for the root user. I tried to change sshd_config but it didn't help, only resetting root password did.

  2. Enable ssh login with password for a user - Ask Ubuntu

    I am the admin of a Ubuntu 20.04 server and I want to enable ssh login for a user through password, rather than using key pairs. The /etc/ssh/ssh_config file on the host looks like this (<username> is …

  3. How do I restart the SSH service? - Ask Ubuntu

    Feb 14, 2012 · How do I stop/start ssh? I've tried /etc/init.d/ssh restart sudo service ssh restart sudo restart ssh I get errors every time.

  4. How can I set up password-less SSH login? - Ask Ubuntu

    The way I usually do this is as follows: ssh-keygen -t rsa (When prompted for a password, leave it blank) Then: cat ~/.ssh/id_rsa.pub | ssh username@hostname 'cat >> .ssh/authorized_keys' (This requires …

  5. ssh - How to upload local file to server through Linux terminal ...

    Dec 10, 2014 · want to transfer my local file to server by using Linux Terminal.Suppose we used to access server by putty or ssh but not able to transfer there file by on same terminal.

  6. linux - Get file from remote over ssh, with simple "get ... - Super User

    Mar 31, 2023 · Is there a way to get a file from a remote server you are connected to via ssh, by simply running a command like get file within the ssh session? Is there a method, or pre-existing tool, to do …

  7. How do I configure a new Ubuntu installation to accept ssh connections?

    Apr 30, 2016 · I just installed Ubuntu. How do I set it up to allow me to ssh into it? Right now I get "ssh: connect to host x.x.x.x port 22: Operation timed out".

  8. Where are my private/public SSH keys on UNIX? - Super User

    20 I'm starting to understand how RSA and public/private key systems work, and I was wondering where my private and public SSH key are stored. When I go to my home directory, and I browse my .ssh …

  9. server - SSH Permission denied (publickey) - Ask Ubuntu

    Apr 20, 2015 · Running ssh -vvv will report "no mutual signature algorithm" if this is the case. To fix, either update your ssh server to support rsa-sha2, or regen your key with ssh-keygen -t ed25519, or …

  10. 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. ssh -o …