OpenVZ VM First Boot Setup Tips: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
====Fully Qualified Domain Name of the container==== | ====Fully Qualified Domain Name of the container==== | ||
FQDNAME=`hostname`.`dnsdomainname` | FQDNAME=`hostname`.`dnsdomainname` | ||
====Generate Random Password==== | |||
The following will generate a 12 character random password '''with special characters''': | |||
PASSWD=`openssl rand -base64 12` | |||
The following will generate a 12 character random password '''without special characters''': | |||
PASSWD=`dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-12` | |||
====MySQL Random root Password==== | ====MySQL Random root Password==== |
Revision as of 05:31, 10 October 2010
If we copy over a setup script into a VM Template during it's build, we can execute it on first boot up of it's newly created VM and on script completion we can remove the script and hence prevent it from running on subsequent boot ups.
Here are some bash shell script statements that perform some common tasks that may be used in such a script (the value will be placed in a variable for example VAR and it can be used with ${VAR} in the scripts):
Current IP of the container
MYIP=`ifconfig venet0:0 | grep "inet" | cut -d":" -f 2 | cut -d " " -f 1`
Fully Qualified Domain Name of the container
FQDNAME=`hostname`.`dnsdomainname`
Generate Random Password
The following will generate a 12 character random password with special characters:
PASSWD=`openssl rand -base64 12`
The following will generate a 12 character random password without special characters:
PASSWD=`dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-12`
MySQL Random root Password
echo Current \"root\" password for MySQL is stored in \"/root/.my.cnf\" file echo ...... and is \"`cat /root/.my.cnf | grep password | cut -d'"' -f 2`\"