Skip to content

Instantly share code, notes, and snippets.

@alexey-detr
Created September 1, 2012 18:14
Show Gist options
  • Save alexey-detr/3582191 to your computer and use it in GitHub Desktop.
Save alexey-detr/3582191 to your computer and use it in GitHub Desktop.
Creating new DB and user for it in MySQL
CREATE DATABASE amarokdb CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT USAGE ON *.* TO amarokuser@localhost IDENTIFIED BY 'amarokpasswd';
GRANT ALL PRIVILEGES ON amarokdb.* TO amarokuser@localhost;
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment