Operating System - Linux
1753485 Members
4403 Online
108794 Solutions
New Discussion юеВ

Re: vsftpd commands to check users

 
SOLVED
Go to solution
Ratzie
Super Advisor

vsftpd commands to check users

I can not seem to find any info regarding how to find out the users that are logged in

ftpwho ?
Is there anything else?

Somewhere I can look?
5 REPLIES 5
Alexander Chuzhoy
Honored Contributor
Solution

Re: vsftpd commands to check users

you can maintain log files:
add these entries to /etc/vsftpd/vsftpd.conf
dual_log_enable=yes
log_ftp_protocol=/var/log/vsftplog

then restart the vsftpd service
tail -f /var/log/vsftpdlog will show some usefull info
Steven E. Protter
Exalted Contributor

Re: vsftpd commands to check users

service vsftpd restart

restarts the service.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Ratzie
Super Advisor

Re: vsftpd commands to check users

I am looking for up 2 date stats on the users logged in...

ftpwho does not work.

Not much into looking into log files constantly...
Miki Barzilay
New Member

Re: vsftpd commands to check users

Try:
last |grep still


Thanks,
Miki
Linux Israel Net
http://linux.israel.net
Ratzie
Super Advisor

Re: vsftpd commands to check users

Thanks