• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

proftpd slow login again

E

Expert

Guest
After this update (9.5.1) FTP login is slow (have delay).
All KB is apply, http://kb.odin.com/en/1533 and DelayEngine Off
But, something wrong. Slow login anywhere..

How I can restart proftpd? It's right: /etc/init.d/xinetd restart ?

My config (/etc/proftpd.conf), my OS is Ubuntu Server 8.04
ServerName "ProFTPD"
ServerType inetd
DefaultServer on

<Global>
DefaultRoot ~ psacln
AllowOverwrite on
IdentLookups Off
</Global>

UseReverseDNS Off
DelayEngine Off

DefaultTransferMode binary
UseFtpUsers on
ListOptions "-a"
TimesGMT off

SetEnv TZ :/etc/localtime
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022

# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
MaxInstances 30

#Following part of this config file were generate by PSA automatically
#Any changes in this part will be overwritten by next manipulation
#with Anonymous FTP feature in PSA control panel.

#Include directive should point to place where FTP Virtual Hosts configurations
#preserved

ScoreboardFile /var/run/proftpd_scoreboard

# Primary log file mest be outside of system logrotate province

TransferLog /opt/psa/var/log/xferlog

#Change default group for new files and directories in vhosts dir to psacln

<Directory /var/www/vhosts>
GroupOwner psacln
</Directory>

# Enable PAM authentication
AuthPAM on
AuthPAMConfig proftpd

AuthGroupFile /etc/group

Include /etc/proftpd.include
 
Back
Top