Navigation

Creating MYSQL Database and new user

This will create a database donie_drupal, create a user donie_user and assign this user to DB donie_drupal

mysql> create database donie_drupal;
mysql> grant all privileges on donie_drupal.* to donie_user@'localhost'
identified by 'P4ssw0rd' with grant option;