Open a web browser and connect to your cPanel Control Panel located at https://ip address:2087.Login as the Administrator using the information sent to you in your setup email.Under the Welcome message click Next.Read the cPanel license agreement and click I Agree.Enter the requested information:Main Shared Virtual Host IP: enter the IP of your VPS Hostname: […]
See MoreTag: Banned website
How to install BIND .
[Root @ example ~] # yum -y install BIND BIND-utilsIt is set assuming that the global address [192.16.0.80/29], private address [10.0.0.0/24], the following settings in the domain name, and [server.world]: Setting BIND. Please replace to suit your environment. (192.16.0.80/29 is actually the address for private)[Root @ example ~] # echo ‘OPTIONS = “-4″‘ >> / […]
See MoreScript to kill Roundcube stuck process !!
Create the new file roundcube.sh and insert the following code. #!/bin/sh for ROUNDCUBE in `ps aux | grep roundcube | awk -F ” ” ‘{print $10}’ | awk -F “:” ‘{print $1}’`; do if [ $ROUNDCUBE -ge 20 ]; then pkill -u cpanelroundcube echo “kill roundcube process roundcube”; fi done You can add the cron […]
See More