[Linux] Rocky Linux 9에서 SFTP 사용을 위한 설정 변경
Rocky Liunux 9 설치 후 WinSCP 사용을 하려는데 자꾸 접근이 허락되지 않을 경우 아래와 같이 설정을 변경한다. $ su root # vi /etc/ssh/sshd_config ---------------------------------------------------- PermitRootLogin yes PubkeyAuthentication yes PasswordAuthentication yes ---------------------------------------------------- systemctl restart sshd 참고: http://yesxyz.kr/how-to-set-up-ssh-connection-to-rocky-linux/?ckattempt=1
2024.01.26