You cannot login inspite of resetting password in Kloxo ?
First check the logs
tail -n 200 /var/log/messages | grep ftp
See if you get the most common error
[ERROR] Unable to switch capabilities : Operation not permitted
Follow the below steps
Remove the pure-ftpd
yum remove pure-ftpd
Download latest FTP from http://download.pureftpd.org/pub/pure-ftpd/releases/
Unzip the FTP zipped file
cd pure-ftpd
./configure –with-everything –with-paranoidmsg –without-capabilities –with-virtualchroot
make && make install
Now cd /etc/xinetd.d/
vi pure-ftp.conf
remove all entries and add the below entries,
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/local/sbin/pure-ftpd
server_args = -A -c5000 -C8 -D -fftp -H -I15 -lpuredb:/etc/pure-ftpd/pureftpd.pdb -lunix -L2000:8 -m4 -s -p30000:50000 -U133:022 -u100 -E -Oclf:/var/log/kloxo/pureftpd.log -g/var/run/pure-ftpd.pid -k99 -Z
groups = yes
flags = REUSE
}
Once done restart using command
“service xinetd restart”
Now your FTP should work
