Compare commits

...

6 Commits

Author SHA1 Message Date
Farid Malekpour
6cf8483976 Merge 7dd6384969 into 10872e02d1 2024-06-09 17:44:58 +05:30
Julien Le Coupanec
10872e02d1 Merge pull request #385 from WPRobson/master
add docker init command to docker cheatsheet
2024-06-07 23:35:19 +02:00
Julien Le Coupanec
365b4f72b7 Merge pull request #390 from MagedMohamedTurk/patch-1
Update C.txt
2024-06-07 23:34:57 +02:00
Maged Turkoman
0f74ebe37b Update C.txt 2024-06-01 09:07:47 +03:00
Will Robson
bf4c0379f2 add docker init command to docker cheatsheet 2024-05-12 20:01:26 +01:00
Farid
7dd6384969 modified mysql.sh, on #323 2024-03-24 17:08:26 +04:30
3 changed files with 23 additions and 10 deletions

View File

@@ -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

View File

@@ -149,6 +149,7 @@ Operators
^= bitwise exclusive or and store ^= bitwise exclusive or and store
|= bitwise or and store |= bitwise or and store
, separator as in ( y=x,z=++x ) , separator as in ( y=x,z=++x )
; statement terminator.
Operator precedence Operator precedence

View File

@@ -2,7 +2,7 @@
# DOCKER # DOCKER
############################################################################## ##############################################################################
docker init # Creates Docker-related starter files
docker build -t friendlyname . # Create image using this directory's Dockerfile docker build -t friendlyname . # Create image using this directory's Dockerfile
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80 docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode