mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-21 20:35:12 +00:00
docs(mysql): grant all privileges
This commit is contained in:
parent
0b10cb93d6
commit
e8be8df3d6
@ -6,3 +6,5 @@ mysqldump -h hostname -u username -p database_name -P port > file.sql # Export d
|
||||
mysql -u username -p database_name < file.sql # Import database
|
||||
|
||||
SHOW PROCESSLIST; # Show you any queries that are currently running or in the queue to run
|
||||
|
||||
GRANT ALL PRIVILEGES ON mydb.* TO 'myuser'@'%' WITH GRANT OPTION; # Grant **all** privileges on database
|
||||
|
Loading…
Reference in New Issue
Block a user