mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-28 22:28:02 -08:00
Compare commits
2 Commits
6cf8483976
...
35f25b5ff1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35f25b5ff1 | ||
|
|
7dd6384969 |
@@ -2,17 +2,29 @@
|
|||||||
# BASICS
|
# BASICS
|
||||||
# *****************************************************************************
|
# *****************************************************************************
|
||||||
|
|
||||||
mysqldump -h hostname -u username -p database_name -P port > file.sql # Export database
|
# Export database
|
||||||
mysql -u username -p database_name < file.sql # Import database
|
mysqldump -h hostname -u username -p database_name -P port > file.sql
|
||||||
|
|
||||||
SHOW PROCESSLIST; # Show you any queries that are currently running or in the queue to run
|
# Import database
|
||||||
|
mysql -u username -p database_name < file.sql
|
||||||
|
|
||||||
show status where `variable_name` = 'Threads_connected'; # Show all connected threads
|
# Show any queries currently running or in the queue
|
||||||
show variables like 'max_connections'; # Show maximum number of allowed connections
|
SHOW PROCESSLIST;
|
||||||
SET GLOBAL max_connections = 150; ## Set new value for maximum connections (no restart needed but for permanent change update my.cnf)
|
|
||||||
|
|
||||||
GRANT ALL PRIVILEGES ON prospectwith.* TO 'power'@'localhost' WITH GRANT OPTION; # Grant all privileges on database
|
# Show all connected threads
|
||||||
|
show status where `variable_name` = 'Threads_connected';
|
||||||
|
|
||||||
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; # Create user
|
# Show maximum number of allowed connections
|
||||||
|
show variables like 'max_connections';
|
||||||
|
|
||||||
mysql -u root -pmypassword -e "MY SQL QUERY" &>> query.log & disown # Run SQL query in the background
|
# Set new value for maximum connections (no restart needed but for permanent change update my.cnf)
|
||||||
|
SET GLOBAL max_connections = 150;
|
||||||
|
|
||||||
|
# Grant all privileges on database
|
||||||
|
GRANT ALL PRIVILEGES ON prospectwith.* TO 'power'@'localhost' WITH GRANT OPTION;
|
||||||
|
|
||||||
|
# Create user
|
||||||
|
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
|
||||||
|
|
||||||
|
# Run SQL query in the background and log output
|
||||||
|
mysql -u root -pmypassword -e "MY SQL QUERY" &>> query.log & disown
|
||||||
|
|||||||
Reference in New Issue
Block a user