docs: mysql

This commit is contained in:
Julien Le Coupanec 2021-09-06 12:27:02 +02:00
parent b443850b2a
commit d787d6cf8d
1 changed files with 1 additions and 2 deletions

View File

@ -9,11 +9,10 @@ SHOW PROCESSLIST; # Show you any queries that are currently running or in the qu
show status where `variable_name` = 'Threads_connected'; # Show all connected threads
show variables like 'max_connections'; # Show maximum number of allowed connections
SET GLOBAL max_connections = 150; ## Set new value for maximum connections (no restart needed)
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
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; # Create user
mysql -u root -pmypassword -e "MY SQL QUERY" &>> query.log & disown # Run SQL query in the background