KLOXO The version is getting newer and newer, but I personally feel that there are more and more problems and troubles. I really miss the old version, it feels so comfortable. The day before yesterday, some netizens encountered that after the installation of KLOXO, the FTP connection failed, and the same was true for the new FTP account. Finally, thanks to this friend {Yun Dan Feng Qing}, who found the solution and shared it with everyone here.
First, log in to the VPS with the root account and see if the port is open.

[root]#netstat -an | grep LISTEN

Under normal circumstances, we can see that commonly used ports such as 7777, 7778, 80, 53, 21, 22, etc. are all open.
If port 21 is not open, we only need to modify the pureftp configuration.
Edit the /etc/xinetd.d/pureftp file and modify or replace it with the following content:
kloxo-ftp
Code:

1
2
3
4
5
6
7
8
9
10
11
service ftp
{
disable = no
socket_type     = stream
wait     < x2>      = no
user             = root
server          = /usr/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 -Oclf:/var/log/kloxo/pureftpd.log -g/var/run/pure-ftpd.pid -k99 -Z -Y 1
groups          = yes
flags     < x2>     = REUSE
}

After completion, restart FTP.

[root]#service xinetd restart

At this time, the FTP login should be OK. Thank you to the enthusiastic netizens for providing information. Although good VPS does not provide great remuneration, we still very much hope that enthusiastic readers can provide materials!

postid
1279

Leave a Reply