Loading...

Ports

In Total of 65,536 TCP and UDP ports Some of them are classified as “privileged”, those ports are below 1024, and “unprivileged”, ports are  1024 and above. Most servers use [ … ]

General Mysql Server Settings

Check below Mysql settings for several MySQL process to run without any interruption. cat /etc/httpd/conf.modules.d/00-mpm.conf LoadModule mpm_prefork_module modules/mod_mpm_prefork.so StartServers 11 MinSpareServers 20 MaxSpareServers 50 ServerLimit 1500 MaxClients 1500 MaxRequestsPerChild 10000 [ … ]

Rsync

To copy from one server to other server with incremental based we can go with rsync as shown below. rsync -avz username@IP:/var/www/html/Foldername/*   2019bkp/  &

Manual Log Rotation

Info: With the -f, –force option the logrotate will force the rotation of files even if they do not meet the specified criteria such as minsize, age, etc. logrotate –force [ … ]