Server Management Blog2024-12-31T13:00:39+00:00

Server Management Blog

Welcome to Our Blog

At iServerSupport, we understand the challenges that come with managing servers, whether they’re in the cloud, virtualized, or self-hosted. Our blog is here to provide you with practical insights, expert advice, and the latest trends in server management.

From troubleshooting server performance issues to optimizing cloud resources and ensuring top-notch security, our goal is to empower businesses and developers to navigate the complexities of server environments with confidence.

Whether you’re looking for quick fixes, detailed guides, or industry news, you’ll find valuable content tailored to your needs. Dive in, explore, and let us help you keep your servers running smoothly, securely, and efficiently.

Your servers, simplified – the iServerSupport way.

lfd on server.com Suspicious process running under user cpanelroundcube

March 8th, 2013|

Executable:/usr/local/cpanel/3rdparty/bin/php-cgiCommand Line (often faked in exploits):/usr/local/cpanel/3rdparty/bin/php-cgi -c /usr/local/cpanel/3rdparty/etc/roundcube /usr/local/cpanel/base/3rdparty/roundcube/index.php Network connections by the process (if any): tcp: 127.0.0.1:48277 -> 127.0.0.1:143 Solution  ======  vi /etc/csf/csf.pignore And add the below line pcmd:/usr/local/cpanel/3rdparty/bin/php-cgi -c /usr/local/cpanel/3rdparty/etc/roundcube /usr/local/cpanel/base/3rdparty/roundcube/index.php Restart CSF  csf -r 

Remove Spam in Plesk or Qmail

March 8th, 2013|

1. Stop Qmail /etc/init.d/qmail stop (Stop qmail before removing) # /var/qmail/bin/qmail-remove -r -p “ Subject” (considering that “Subject” was the subject of the email ) 2. To completely remove all the mails from queue. Just run the [...]

Finding Spammer in Plesk or Qmail

March 8th, 2013|

Finding Spammer in Plesk or Qmail To provide a mail service, Plesk supports two mail transfer agents: Postfix and qmail. Plesk uses only one mail transfer agent at a time. You can check which of [...]

Turn off ssl cPanel redirection

March 6th, 2013|

Turn off SSL cPanel redirection: SSL redirection can be found in WHM >> Tweak Settings >> Redirection When a user visits /cpanel, /webmail, /whm, or visits other URLs that redirect to a cPanel service, the [...]

Simple Mysql Database Backup Weekly Daily Monthly

March 6th, 2013|

Create 3 script daily.sh weekly.sh monthly.sh daily.sh ====== #!/bin/bash #this is run by the root crontab mysqldump -ubugs_db -pucb1986 bugs_db > /root/backups/daily/bugs_db.sql weekly.sh ======= #!/bin/bash #this is run by the root crontab mysqldump -ubugs_db -pucb1986 [...]

Go to Top