mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 14:31:06 +01:00
20 lines
680 B
Plaintext
20 lines
680 B
Plaintext
# To connect to a database
|
|
mysql -h localhost -u root -p
|
|
|
|
# To backup all databases
|
|
mysqldump --all-databases --all-routines -u root -p > ~/fulldump.sql
|
|
|
|
# To restore all databases
|
|
mysql -u root -p < ~/fulldump.sql
|
|
|
|
# To create a database in utf8 charset
|
|
CREATE DATABASE owa CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
|
|
# To add a user and give rights on the given database
|
|
GRANT ALL PRIVILEGES ON database.* TO 'user'@'localhost'IDENTIFIED BY 'password' WITH GRANT OPTION;
|
|
|
|
# To list the privileges granted to the account that you are using to connect to the server. Any of the 3 statements will work.
|
|
SHOW GRANTS FOR CURRENT_USER();
|
|
SHOW GRANTS;
|
|
SHOW GRANTS FOR CURRENT_USER;
|