Changes

Jump to navigation Jump to search
101 bytes added ,  18:13, 20 October 2014
Line 666: Line 666:     
===Generating strong random password===
 
===Generating strong random password===
 +
You can Install [[Random_Strong_Password_Generator|randpw]] else you can use manually the CL below
 +
 
Security should not be taken lightly and password for e.g. databases, connections etc. need to be long and strong. One way of generating a strong random password is:
 
Security should not be taken lightly and password for e.g. databases, connections etc. need to be long and strong. One way of generating a strong random password is:
 
  < /dev/urandom tr -dc '_A-Z-a-z-0-9!@+[](){}~<>*%^&#+=/$:;,?' | head -c${1:-50};echo;
 
  < /dev/urandom tr -dc '_A-Z-a-z-0-9!@+[](){}~<>*%^&#+=/$:;,?' | head -c${1:-50};echo;

Navigation menu