• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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