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

pigz - server unreachable

UweP

Regular Pleskian
Hello,

since Plesk uses Pigz my websites are offline daily for a few minutes - I wonder if theres any possibility to reduce the number of cores Pigz uses or if I can switch to another packing tool which doesn't utilize all cores, so my websites and other services are not unavailable?
 
You can try to remove pigz package with --nodeps option. gzip will be used instead of pigz in this case.
 
Use --ignore-depends=packagename option for dpkg package manager.
 
root@baby ~ # dpkg remove --ignore-depends=pigz pigz
dpkg: error: need an action option

Tried dpkg --ignore-depends=pigz remove pigz but doesnt work either.
 
With "dpkg" you have to define the whole package name... i.e. "pigz_2.2.4-3_amd64.deb" .

apt-get remove --nodeps pigz
 
root@baby ~ # apt-get remove --nodeps pigz
E: Command line option --nodeps is not understood

and i cant find the exact package name of pigz.
 
you might use the "--nodeps" string AFTER the packagename as well if the first suggestion didn't work for you.

Apart from this, it is much easier for people willing to help you, if you would provide informations about your operating system , so that it might be possible to guess, which pigz - package you might use.

dpkg -l \*pigz\*
 
root@baby ~ # apt-get remove pigz --nodeps
E: Command line option --nodeps is not understood

im using debian 7.7

ii pigz 2.2.4-3 amd64 Parallel Implementation of GZip
 
Back
Top