Using the command line is sometimes a lot quicker than fannying around with a panel in the browser. So to…
To suspend or unsuspend a domain on a Plesk server via the command line, we use the Plesk command line…
To block IP address from connecting to server, i use iptables. this morning, i noticed some idiot trying to log…
I was wondering how to turn off the search highlight in vi as it’s distracting when trying to code through…
first, stop the mail manager: [code]/usr/local/psa/admin/sbin/mailmng –stop-service[/code] then locate all of the shitty mapped mailbox junk and delete it: [code]find…
Quick bash script to grep out MySQL passwords from Plesk’s PSA database. Script: [code language=”bash”]#!/bin/bash clear; echo "Searching MySQL user…
Quick bash script to grep out protected directory logins from Plesk’s PSA database. Script: [code language=”bash”]#!/bin/bash clear; you=`who am i…
to see active connections (ip addresses) connected to port 80: [code] netstat -ntu | grep :80 | grep EST |…
Quick bash script to grep out ftp passwords from Plesk’s PSA database. Script: [code language=”bash”]#!/bin/bash clear; echo "Searching the FTP…