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.
Wednesday, November 23, 2011
MySQL create database, user and permissions
mysql -u root -p
create database databasename;
grant usage on *.* to databaseuser@localhost identified by 'userpassword';
grant all privileges on databasename.* to databaseuser@localhost ;