Category: SSH

  • How to copy files from one server to another using SSH?

    Transfer files from server to server by using SSH is very convenient. You can use the server’s download and upload speed to transfer files. Login to your old server from which you want to copy or transfer files. You can use any SSH terminal like PuTTY or MacBook’s Terminal. ssh userName@hostname in most cases username […]

  • How to find spam mailing script location in whm cpanel

    If you want to locate the spam mailing script in your whm cpanel server you have run some ssh command. First you have to find out which script/file in your server is sending most of the abusing emails. grep cwd /var/log/exim_mainlog | grep -v /var/spool | awk -F”cwd=” ‘{print $2}’ | awk ‘{print $1}’ | […]

  • Clear mail queue by using SSH

    If you found your email queue is full with spam emails, first you have to find out which domain is sending the spam emails. Run the command below in your ssh terminal it will show you a list of domains along with emails it sent during a period, by showing this list your can easily […]