Procedure
- Create an empty database named build.
- Create a user associated with it (user name build,
password build).
Results
You could use the following commands to create the database
build and
create a user
build@localhost with the password (
"identified
by")
build:
mysql -u root
mysql> create database build;
mysql> grant all on build.* to build@localhost
-> identified by "build";