로그인 ID나 비밀번호가 없는 SSH

로그인 ID나 비밀번호가 없는 SSH

내 워크스테이션이 실행 중이며 Linux Centos7로컬 네트워크의 일부입니다. 해당 로컬 네트워크의 모든 컴퓨터도 실행 중입니다 Linux Centos7(동일한 버전). 서버에 들어갈 때 마다 ssh비밀번호와 로그인 정보를 입력해야 합니다. ssh매번 이러지 않았 으면 좋겠습니다 . 어떤 제안이 있으십니까?

답변1

로컬 컴퓨터에서 terminal다음으로 이동하여 입력하세요.

$ cd ~/.ssh

$ ssh-keygen -t rsa
Choose no passphrase when asked and accept the default filename of id_rsa

$ scp id_rsa.pub <user>@<yourhost>:.ssh/authorized_keys
Provide your password when asked and that’s the last time you’ll have to do it!

인용하다

관련 정보