Création d'une base de données :
create database drupal_portfolio character set 'utf8';
Note : Multi-byte UTF-8 support in Drupal 7
create database drupal_portfolio character set 'utf8mb4';
Création Utilisateur
create user 'alex'@'localhost' identified by 'xxxxxx';
Autorisation de l'utilisateur sur la Base de données :
grant all privileges on drupal_portfolio.* to 'alex'@'localhost';
flush privileges;
show grants for alex@'localhost';