About 1,850,000 results
Open links in new tab
  1. linux - Remote login as root in ubuntu - Stack Overflow

    Aug 23, 2013 · It is a security risk to enable root login via ssh. Because, malicious programs may attempt brute force login on root@some-server. And if they succeed they can do what they want.

  2. permission denied for root@localhost for ssh connection

    By default, the SSH server denies password-based login for root. In /etc/ssh/sshd_config, if the following line exists, possibly commented out (with a # in front): PermitRootLogin without-password Then …

  3. How to set up passwordless SSH access for root user

    Mar 23, 2012 · To set up a passwordless SSH connection for the root user you need to have root access on the server. Easiest method is to temporarily allow root to log in over ssh via password.

  4. Permit root to login via ssh only with key-based authentication

    Deny direct root login via ssh by using PermitRootLogin no in /etc/ssh/sshd_config. Using this configuration it is necessary to use a key authentication and a password to become root. I configured …

  5. How to enable ssh root access on Ubuntu 14.04 - Ask Ubuntu

    May 19, 2014 · I´d like to enable the ssh root access on Ubuntu 14.04. Editing the /etc/ssh_config (PermitRootLogin yes) didn't affect anything.

  6. need to connect as **root@my-server-ip** with SSH - Ask Ubuntu

    Aug 16, 2014 · PermitRootLogin without-password which forbids root logins using password authentication. This is a good idea because brute-force login attempts against the root user are …

  7. ssh login as user and change to root, without sudo

    Apr 6, 2018 · I have the following task: the command has to be run as root on server remotely in bash script over ssh and the command output has to be fetched in variable. logging over ssh as root is …

  8. ssh root password - Ask Ubuntu

    Aug 4, 2023 · How can I get the root password, I'm trying to login in cmd with the command ssh root@localhost and I don't know what type of password I should use. The server is a linux vps. My …

  9. centos - Enable ssh root login - Unix & Linux Stack Exchange

    So far I was able to enable SSH login with my user and a passphrase, which is nice, but I would like to be able to login directly in the root user. Can I do this without the password of root?

  10. can't ssh into remote host with root, password incorrect

    Do you have ssh as root disabled? Check your sshd configuration (possibly /etc/ssh/sshd_config) and look for the line PermitRootLogin no. Change the no to yes and restart sshd (most likely either …