Random Stuff
Random notes and thoughts that may or may not be of use to someone.
Thursday, January 08, 2015
MySQL - create database and user quickly
I'm not a MySQL fan. I don't use it enough to remember some basic things.
mysql> create database mydb;
mysql> create user 'myuser'@'localhost' IDENTIFIED BY '*******';
mysql> grant all privileges on mydb.* to 'myuser'@'localhost';
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment