Password-less ssh in linux

Source: Internet
Author: User

In linux, the ssh password-free approach requires switching between different hosts or scp during daily development or O & M, repeated Password Input in an intranet trusted network environment is a tedious task to test your memory, therefore, we can use the ssh-keygen tool to configure ssh authorization between common machines to save the process of entering the password. To access B from A directly using ssh without A password (using the account zhangsan), follow these steps: 1. log on to A and switch to zhangsan: su-zhangsan; 2. generate public key and private key: the Java code ssh-keygen-t dsa, where the-t parameter can be followed by dsa or rsa. The specific type depends on the machine environment, and most of them should be dsa. After you press enter ~ The id_dsa and id_dsa.pub files are generated under the zhangsan/. ssh/directory. The id_dsa.pub file is a public key file and needs to be copied to the target and its B files. Www.2cto.com 3. Copy the public key to the target machine: scp id_dsa.pub zhangsan @ B:/home/zhangsan/. ssh/id_dsa.pub.A 4. append it to the target machine ~ /. Ssh/authorized_keys ~ /. Ssh/cat id_dsa.pub.A> ~ /. Ssh/authorized_keys is complete.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.