WF AQ

Knowledge base

22 Aprile 2024
di admin@admin
Commenti disabilitati su Aumentare il numero di watchers in Linux

Aumentare il numero di watchers in Linux

You can get your current inotify file watch limit by executing: $ cat /proc/sys/fs/inotify/max_user_watches When this limit is not enough to monitor all files inside a directory, the limit must be increased for Listen to work properly. You can set … Continua a leggere

6 Settembre 2023
di admin@admin
Commenti disabilitati su PHP-FPM settings tutorial. max_servers, min_servers, etc.

PHP-FPM settings tutorial. max_servers, min_servers, etc.

Fonte:  https://thisinterestsme.com/php-fpm-settings/   You need to know three things about your server before you change PHP FPM’s settings. How many cores does your server have? The amount of memory (RAM) on your server. How much memory does the average PHP … Continua a leggere

18 Gennaio 2022
di admin@admin
Commenti disabilitati su Plesk courier-imaps: Error: Too many open files

Plesk courier-imaps: Error: Too many open files

Fonte: https://support.plesk.com/hc/en-us/articles/4404507735826-Mail-client-provides-warnings-regarding-IMAP-connection-for-Plesk-mailboxes-inotify-initialization-error Resolution Connect to the server via SSH. Check the current per-userid limit of inotify file descriptors: # cat /proc/sys/fs/inotify/max_user_instances 128 Increase this value to a greater one via the command below, for example to 200: # echo “fs.inotify.max_user_instances=200” >> /etc/sysctl.conf Note: Rough … Continua a leggere

1 Settembre 2021
di admin@admin
Commenti disabilitati su Kill a Process from the Command Line

Kill a Process from the Command Line

Fonte: https://www.linux.com/training-tutorials/how-kill-process-command-line/   Learn how to kill errant processes in this tutorial from our archives. Picture this: You’ve launched an application (be it from your favorite desktop menu or from the command line) and you start using that launched app, only … Continua a leggere