• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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