• 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.

Despite fix for PPPM-2503 FTP still stop after Plesk upgrade

Pascal - Netenvie

New Pleskian
Hi,
Despite fix of update 39 FTP server still stop after update on one server.
It runs ok on others.
What do you need to diagnose that ?
 
Please provide more details - OS, Plesk and patch version, how often the issue is reproducing, xinetd status after update?
 
Hi, check if xinetd is in the processes table:
Code:
# ps afxww | grep xinetd | grep -v grep

30939 ?  Ss  0:00 /usr/sbin/xinetd -pidfile /var/run/xinetd.pid -stayalive

and how do you usually workaround this issue ?
 
Generally after every autopudate i use this CLI command :
/etc/init.d/xinetd restart
Then it run ok.

Xinetd status is actually :
20263 ? Ss 0:00 /usr/sbin/xinetd -pidfile /var/run/xinetd.pid -stayalive

I will check it after next auto update ...
 
How it goes on after

/etc/init.d/xinetd restart

?
 
Hello,
Looks like xinetd restart work very unstable, we will try to fix it in one of nearest update.

As workaround you can try to:
1. Update xinetd with fix of https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=129086
or
2. Enable watchdog for xinetd service:
- Install Watchdog extension via Plesk installer.
Code:
# /usr/local/psa/admin/sbin/autoinstaller  --select-release-current --install-component watchdog
- Add custom watchdog config for xinetd service:
Code:
cat /usr/local/psa/etc/modules/watchdog/service.tpl.d/ftp
# FTP(xinetd)
check process xinetd_ftp with pidfile /var/run/xinetd.pid
        start program = "/etc/init.d/xinetd start"
        stop  program = "/etc/init.d/xinetd stop"
        if failed host localhost port 21 protocol ftp with timeout 25 seconds then restart
- On "Extensions > Watchdog > Services" review list of monitored services (there are no ftp service or xinetd service - they are provided by config above) and Enable watchdog monitor.
 
Back
Top