Skip to content

Instantly share code, notes, and snippets.

@rickhernandezio
Created January 13, 2018 22:31
Show Gist options
  • Save rickhernandezio/18a852720927c4bac7ec7444ecc03656 to your computer and use it in GitHub Desktop.
Save rickhernandezio/18a852720927c4bac7ec7444ecc03656 to your computer and use it in GitHub Desktop.
Create users with MySQL
CREATE DATABASE MauticAutomation;
CREATE USER 'MauticUser'@'%' IDENTIFIED BY 'CREATE A REALLY STRONG PASSWORD';
GRANT ALL ON MauticAutomation.* TO 'MauticUser'@'localhost' IDENTIFIED BY 'CREATE A REALLY STRONG PASSWORD';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment