Page 1 of 1

SFTP instead of FTP

Posted: Mon Jul 04, 2016 8:11 am
by canoodle
vestacp – Disable vsftpd for security reasons

… if you have ssh properly setup (public-private-key-based-auth) then you can easily connect via sftp to your host and abandon ftp, which is prone to security problems.

E.g. with FileZilla the config looks as easy as this: (if you are logged in with a user under linux that has ssh setup correctly)

Image

to Disable vsftpd:

Code: Select all

service vsftpd stop; # sto vsftpd service

update-rc.d -f vsftpd remove; # disable vsftpd service (should also work in debian)

chkconfig vsftpd off; # disable vsftpd service (only works in redhat)
http://dwaves.de/2016/07/04/vestacp-dis ... y-reasons/

Re: SFTP instead of FTP

Posted: Sun Aug 14, 2016 9:34 am
by chirag
Can you tell me reason? Do I still need to disable SFTP?