How to Setup SSH Passwordless Login in RHEL 8

With the release of RHEL 8 Beta, you get to experience what the real product will be like and test some of its functionalities. If you are eager to test RHEL 8 you can signup for free and download RHEL 8 beta.

You can review our RHEL 8 installation tutorial on the link below.

  1. Installation of “RHEL 8” with Screenshots

To easily understand this, I will be using two servers:

  • 192.168.20.100 (kerrigan) – server from which I will be connecting
  • 192.168.20.170 (tecmint) – my RHEL 8 system

In this tutorial, you are going to learn how to setup passwordless SSH login on your RHEL 8 install using ssh keys. Open-ssh server should already be installed on your system, but in case it is not, you can install it by issuing the following command:

# yum install openssh-server

Step 1: Generate SSH Key on 192.168.20.100 (kerrigan)

On the system, from where you will be connecting to your RHEL 8 system, generate a new ssh key pair. This can be done by using the following command:

# ssh-keygen

You can configure a meaningful name for the file or just leave it to the default one. When asked for a passphrase, simply press “enter” and leave the password empty.

Generate SSH Keys on RHEL 8
Generate SSH Keys on RHEL 8

Step 2: Copy SSH Key to 192.168.20.170 (tecmint)

Copying the key is a simple task and that can be completed by using ssh-copy-id command as shown.

# ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]

When prompted for the remote user’s password, simply enter it. This will create the “.ssh” directory if missing and the authorized_keys file with appropriate permissions.

Copy SSH Key to RHEL 8
Copy SSH Key to RHEL 8

Step 2: Test SSH Passwordless Login from 192.168.20.100

Now that we have the key copied to our remote server, we can test the connection. You should not be asked for password:

# ssh -i ~/.ssh/id_rsa  [email protected]
Test SSH Passwordless Login
Test SSH Passwordless Login

In this tutorial you learned how to SSH to your RHEL 8 system using passwordless ssh key. I hope the process was easy. If you have any questions, please post them in the comment section below.

Tutorial Feedback...
Was this article helpful? If you don't find this article helpful or found some outdated info, issue or a typo, do post your valuable feedback or suggestions in the comments to help improve this article...

If You Appreciate What We Do Here On TecMint, You Should Consider:

TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Support Us

We are thankful for your never ending support.

3 thoughts on “How to Setup SSH Passwordless Login in RHEL 8”

  1. So I have used this method for a previous Beowulf Cluster (Ubuntu 16.04). I wanted to switch to Scientific Linux. I have successfully completed the steps and gotten the passwordless connections. HOWEVER: the connection via port 22 gets ‘refused’ and I have no idea how to bring these back to life without starting all over. Can you help?

    Reply

Got something to say? Join the discussion.

Have a question or suggestion? Please leave a comment to start the discussion. Please keep in mind that all comments are moderated and your email address will NOT be published.