MySQL

Create a MySQL User

I often forget how to create a user in MySQL..  Here it is:

1
2
3
4
grant all privileges on *.* to 'landlessnesss'@'localhost' \
 identified by 'abc123def' with grant option;
 
flush privileges;

Reader Discussion

Comment on this post




Please enter the word you see in the image below:


Related posts

no related posts