• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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