Skip to content

Instantly share code, notes, and snippets.

@henrypalacios
Created July 10, 2017 03:48
Show Gist options
  • Select an option

  • Save henrypalacios/e60e75d44cc74c69508bf53286ae8785 to your computer and use it in GitHub Desktop.

Select an option

Save henrypalacios/e60e75d44cc74c69508bf53286ae8785 to your computer and use it in GitHub Desktop.
Create User with root privileges
mysql -u root -p
CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'some_pass';
GRANT ALL PRIVILEGES ON *.* TO 'homestead'@'localhost' WITH GRANT OPTION;
CREATE USER 'homestead'@'%' IDENTIFIED BY 'some_pass';
GRANT ALL PRIVILEGES ON *.* TO 'homestead'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment