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
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
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
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 [...]
Find Spamming Account in Postfix or Plesk
How to find Spamming Account in Postfix or Plesk 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 [...]
Slow Initial Server Startup when Using Phusion Passenger and Rails
What's happening is that your Application and/or ApplicationSpawners are shutting down due to time-out. To process your new request, Passenger has to startup a new copy of your application, which can take several seconds, even [...]
Turn off ssl cPanel redirection
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 [...]
How to Install Linux Linux Malware Detect (LMD) (MALDETECT)
How to Install Linux Linux Malware Detect (LMD) LMD or the Linux Malware detect is yet another useful software application form RfxNetworks , it has been prepared keeping the specific share hosting requirements and malware [...]
Simple Mysql Database Backup Weekly Daily Monthly
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 [...]