• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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