cpanel Optimization
https://engintron.com/ – nginx fro WHM/cpanel
https://my.bluehost.com/cgi/help/2521
https://nixcp.com/free-cpanel-plugins/
https://engintron.com/ – nginx fro WHM/cpanel
https://my.bluehost.com/cgi/help/2521
https://nixcp.com/free-cpanel-plugins/
FirstĀ access the server command line. I used SSH over Putty (http://www.chiark.greenend.org.uk/~sgtatham/putty/) But you can use the terminal/console if supported by your host, ftp or winSCP (https://winscp.net/eng/docs/guide_install) which may be easier. then access the file /etc/ips.remotedns For SSH I used the command: nano /etc/ips.remotedns you will need to know the nameservers for your domain I…
The output of the ‘df’ command will show you overall disk usage. To find out how much space a give directory is used us the ‘du -s ‘ command. Once you are connected to the server via SSH, run the following command: # df -h This will output the usage of each partition in the…
http://www.wikihow.com/Find-a-File-in-Linux find / -type f -iname “libphp5.so” find / -type d -iname “ibdata1” find / -type f -iname “*arcconf” grep -R ‘AllowNoPassword’ / egrep ‘User’ /etc/apache2/apache2.conf grep DocumentRoot /etc/apache2/apache2.conf To find files larger than 100MB, use this command: find / -type f -size +100000k -exec du -h {} \; Search within files for specific text:…
https://100tb.com/community/knowledgebase/display/HOW/Configuring+SMTP+Relay+Server Key points of trouble– Make sure the hostname on each server and relay is different and had correct DNS records. Make sure that you have added a valid SPF records for every domain as described in our article.
Warning the following guide will teach you how to completely delete files from your server. This needs to be run as root so be EXTRA careful before running any command and double check the files that you delete, these will be non-recoverable. If you are working on a small VPS it is not uncommon to…
http://superuser.com/questions/170866/how-to-run-a-cron-job-as-a-specific-user crontab -u <username> -e 0 6 * * * /usr/local/cpanel/scripts/exim_tidydb > /dev/null 2>&1 30 5 * * * /usr/local/cpanel/scripts/optimize_eximstats > /dev/null 2>&1 35 3 * * * /usr/local/cpanel/scripts/upcp –cron 0 1 * * * /usr/local/cpanel/scripts/cpbackup 0 2 * * * /usr/local/cpanel/bin/backup 35 * * * * /usr/bin/test -x /usr/local/cpanel/bin/tail-check && /usr/local/cpanel/bin/tail-check 45 */4 *…