Hey guys. New to linux and going through a few books to start my own server. I installed vsftpd on my (mint) server. It was working for anonymous access only. I changed the config file to NO for all the anonymous options. I then couldn't FTP.
Things I've tried:
Stop/start
Restart
reinstall
changing the config file again
checked logs - nothing in them besides the login attempts from when it was working.
The service doesn't seem to be running. What information do you need to help me out on this one? I've pasted some info below. Also, again - forgive me. This is my first week with Linux. Thanks for your help in advance.
Code:
nathanhyland@nathanhyland-dell / $ sudo /etc/init.d/vsftpd restart
* Stopping FTP server: vsftpd No /usr/sbin/vsftpd found running; none killed.
[ OK ]
* Starting FTP server: vsftpd [ OK ]
nathanhyland@nathanhyland-dell / $ sudo /etc/init.d/vsftpd status
vsftpd is not running
nathanhyland@nathanhyland-dell / $
Code:
nathanhyland@nathanhyland-dell / $ ps ax | grep vsftpd
2517 pts/0 T 0:00 nano /etc/init.d/vsftpd start
2924 pts/0 T 0:00 nano vsftpd.conf
2927 pts/0 T 0:00 nano vsftpd.conf
3031 pts/0 R+ 0:00 grep --colour=auto vsftpd
nathanhyland@nathanhyland-dell / $
vsftpd.conf file without comments:
Code:
listen=YES
anonymous_enable=YES
anon__upload_enable=YES
anon_mkdir_write_enable=YES
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
If you don't see an option there, it was commented out.