Showing posts with label create user and database. Show all posts
Showing posts with label create user and database. Show all posts

Thursday, August 18, 2016

Create New MySQL User and his Database

Create new MySQL user and database

create database eddy;
create user eddy@localhost identified by 'gt84weu$rA^o#HB';
grant all on eddy.* to eddy identified by 'gt84weu$rA^o#HB';

This snippet should be run from MySQL command line.