Rubriques
Create a MySQL user
Create a Mysql super-user (with all rights)
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'localost' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;Will create "myuser", with "mypassword" password. This account will have all rights on the database.