Skip to content

Instantly share code, notes, and snippets.

@POMXARK
Forked from zachbrowne/instructions.txt
Created May 15, 2024 18:29
Show Gist options
  • Save POMXARK/6378653b42c9408bf84061f90e6dfbc1 to your computer and use it in GitHub Desktop.
Save POMXARK/6378653b42c9408bf84061f90e6dfbc1 to your computer and use it in GitHub Desktop.
Create MYSQL database
mysql -u root -p
CREATE DATABASE testing;
GRANT ALL PRIVILEGES ON testing.* TO test_user@localhost IDENTIFIED BY 'test_pass';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment