Skip to content

Instantly share code, notes, and snippets.

@yarko686
Created July 31, 2018 11:54
Show Gist options
  • Save yarko686/950ea62f79638a6f293c28b99dd19f7b to your computer and use it in GitHub Desktop.
Save yarko686/950ea62f79638a6f293c28b99dd19f7b to your computer and use it in GitHub Desktop.
MySQL Queries for Galera user
CREATE USER 'galer_root'@'%' IDENTIFIED BY 'my_pw';
GRANT USAGE ON *.* TO 'galera_root'@'$%' IDENTIFIED BY 'my_pw';
GRANT ALL privileges ON *.* TO '$galera_root'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment