Skip to content

Instantly share code, notes, and snippets.

@lysender
Created May 23, 2025 09:00
Show Gist options
  • Save lysender/dc2eafc021ef7fe6c8650c52b2344479 to your computer and use it in GitHub Desktop.
Save lysender/dc2eafc021ef7fe6c8650c52b2344479 to your computer and use it in GitHub Desktop.
MySQL - create all around user for dev purposes

Create an all around user for MySQL for dev purposes.

CREATE USER 'admin'@'localhost' IDENTIFIED BY 'password';
CREATE USER 'admin'@'%' IDENTIFIED BY 'password';

GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' WITH GRANT OPTION;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment