I am an IT-consultant, teaching individuals how to work securely on a computer, protect data with encryption tools and how to communicate securely with people over insecure networks. Contact me to make an appointment.
Friday, July 30, 2010
Create MySQL accounts from command line
mysql --user="root" --password="your_root_password"
CREATE USER 'new_username'@'localhost' IDENTIFIED BY 'password_for_new_username';
GRANT ALL ON *.* TO 'new_username'@'localhost'; (change for your security/access situation)