Skip to content

Instantly share code, notes, and snippets.

@joanteixi
Created November 7, 2013 00:43
Show Gist options
  • Save joanteixi/7346982 to your computer and use it in GitHub Desktop.
Save joanteixi/7346982 to your computer and use it in GitHub Desktop.
Crear user /db en mysql
mysql> CREATE USER 'usuario'@'localhost' IDENTIFIED BY 'contraseña';
mysql> GRANT ALL ON concerts.* TO 'usuario'@'localhost';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment