June 2016
Beginner
456 pages
9h 31m
English
In this recipe, we will learn how to add new users to the MySQL database server. MySQL provides very flexible and granular user management options. We can create users with full access to an entire database or limit a user to simply read the data from a single database. Again, we will be using queries to create users and grant them access rights. You are free to use any tool of your choice.
You will need a MySQL user account with administrative privileges. You can use the MySQL root account.
Follow these steps to add users to MySQL database server and assign access rights:
$ mysql ...Read now
Unlock full access