• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Issue Latest update broke FTP

Rowan

New Pleskian
Since the latest update this week I receive this error when a user tries to connect to FTP

In the log (tail -f /var/log/messages) it displays the following error:

Bash:
proftpd[11996]: mod_ctrls/0.9.5: error: unable to bind to local socket: Permission denied

I cannot really find any suitable solution, does anyone have an idea what this could be?
 
When I lower Selinux to Permissive it changes to the following error:

Bash:
proftpd[3852]: mod_ctrls/0.9.5: error: unable to bind to local socket: Address already in use
 
I suppose that you have proftpd package from Atomic? Check it with:

# rpm -qi psa-proftpd | grep Vendor
Vendor : Atomicorp

In this case exclude psa-proftp package from Atomic repo /etc/yum.repos.d/asl.repo or(and) /etc/yum.repos.d/atomic.repo:

[asl-4.0]
name=Atomicorp - - Atomic Secured Linux 4.0
mirrorlist=file:///etc/asl/asl-4.0-mirrorlist
enabled=1
gpgkey = [file:///etc/pki/rpm-gpg/RPM-GPG-KEY.atomicorp.txt](file:///etc/pki/rpm-gpg/RPM-GPG-KEY.atomicorp.txt)
gpgcheck=1
exclude=psa-proftpd

Remove psa-proftp package from the server:

# rpm -e --nodeps psa-proftpd

Install psa-proftp package from Plesk repository:

# plesk installer --select-release-current --install-component proftpd

Restart the service:

# systemctl restart xinetd
 
Back
Top