I've just installed vsftpd, and started the service, but now what?
- How and where do FTP users get set up?
- I've got a wordpress install that needs to use FTP. Should I set up a special user for it?
I've just installed vsftpd, and started the service, but now what?
Normally users are setup as system users. These instructions are the commands, but you may need to change some things such as username and directories to match the username you want and where wordpress is installed.
useradd wordpress-admin -d /var/www/html/wordpress
chown -R wordpress-admin:wordpress-admin /varwww/html/wordpress
passwd wordpress-admin
Edit your vsftpd configuration and verify these settings:
This will allow wordpress to login via ftp and make any changes required. http://vsftpd.beasts.org/vsftpd_conf.html covers the options in the vsftpd configuration file.