Script to change cpanel password for many users in server

First of all get all the users name in a file : users.txt Then touch a file script.sh chmod 755 script.sh Copy the following code to that file: #!/bin/bash for i in `more users.txt` do randstring=`tr -dc _#$%^\&*\(\)\=A-Za-z0-9\~\+@! < /dev/urandom | head -c 8` echo “$i $randstring” >> newpass.txt /usr/local/cpanel/scripts/realchpass $i $randstring /scripts/mysqlpasswd $i $randstring […]

Continue Reading…

Install Installatron on a cPanel/WHM server

To install Installatron on a cPanel server make sure that you have cPanel/WHM 11.x (latest), 10.x, 9.x versions available. Now login to the server as root. Get the Installatron Script. wget http://data1.liquenox.com/installatron_setup.sh Assign appropriate ownership to the installatron_setup.sh chmod 755 installatron_setup.sh Run the script. ./installatron_setup.sh -f Installation is now ready to use in cPanel and WHM. […]

Continue Reading…