Linux

ssh 무인증 에러 발생시.

Naan 2019. 11. 11. 22:30
320x100

# ssh -vvv root@192.168.0.2

위와 같이 접속하는 서버버에서 클라이언트에 접속 시도

# tail -f /var/log/secure

클라이언트에 로그 확인

 

Authentication refused: bad ownership or modes for directory /root

라고 뜨면

 

# vi /etc/ssh/sshd_config

StrictModes no  

로 수정

 

그리고

 

RSAAuthentication yes

PubkeyAuthentication yes

AuthorizedKeysFile      .ssh/authorized_keys

 

 

# service sshd restart

# chmod g-w /root

# chmod 700 /root/.ssh

# chmod 600 /root/.ssh/authorized_keys

 

 

320x100

'Linux' 카테고리의 다른 글

mysqldump: Error 2020: Got packet bigger than 'max_allowed_packet' bytes when dumping table `  (0) 2019.11.20
Synology root 무인증 접속  (0) 2019.11.13
centos latex install  (0) 2019.10.04
openvas install  (0) 2019.09.20
nomachine + otp  (0) 2019.09.11