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";