ssh root 만 접근 가능 하도록 설정하고 싶다. sshd_config 파일을 수정한다.
vi /etc/ssh/sshd_config
아래 한줄 추가
AllowUsers root
==========================================
설치 :
vi /etc/ssh/sshd_config
아래 한줄 추가
AllowUsers root
==========================================
설치 :
apt-get install vsftpd
설정:
vi /etc/vsftpd.conf
주석을 제거 한다.
write_enable=yes
chroot_local_user=YES
위 주석만 제거해도 작동되지만 . Ubuntu 20.04.1 LTS 버전에서 아래 처럼 오류가 난다.
------------------------------------------------------------------------
500 OOPS: vsftpd: refusing to run with writable root inside chroot()
------------------------------------------------------------------------
allow_writeable_chroot=YES
추가후 해결 되었다.
==========================================
service ssh restart
service vsftpd restart
추가후 해결 되었다.
==========================================
service ssh restart
service vsftpd restart
끝