• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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