1. First, generate the public key and private key files on the Linux server. The default storage directory is ~/.ssh. ssh-keygen You can leave the password blank to log in without a password in the future. 2. Copy the private key file to your local computer. scp [email protected]:/root/.ssh/id_rsa ~/.ssh It is best to put the private key file in the ~/.ssh directory. Otherwise, when logging in using ssh, you need to use -i to specify the private key file. 3. The public key file needs to be added to the server's ~/.ssh/authorized_keys file. cat id_rsa.pub >> authorized_keys 4. Modify the configuration file to allow login using a secret key. vim /etc/ssh/sshd_config Just remove the # before the comment. Then restart the Linux ssh service systemctl restart sshd.service Older versions without systemctl need to use service sshd restart You can use ssh [email protected] to log in: The above article about how to configure git bash to log in to Linux through ssh is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed installation process of MySQL 8.0 Windows zip package version
>>: ByteDance interview: How to use JS to implement Ajax concurrent request control
Purpose: 1. In order to map the server's exte...
Configure multiple servers in nginx.conf: When pr...
Add the following code to the CSS style of the el...
Create a Directory cd /usr/local/docker/ mkdir je...
SRIOV introduction, VF pass-through configuration...
Use of AES encryption Data transmission encryptio...
Table of contents 1. Timestamp to date 2. Convert...
1. Use ansible's playbook to automatically in...
Table of contents Show Me The Code Test the effec...
Everyone knows that data in MySQL needs to be wri...
First, you need to determine which fields or fiel...
The Spring Boot project uses docker containers, j...
MySQL is a commonly used open source database sof...
Table of contents Related dependency installation...
When it comes to pictures, the first thing we thi...