Experienced-Level MySQL Commands
A practical reference for MySQL commands including user management, database backups, and restores.
Zach Robichaud
Table of Contents
Experienced-Level MySQL Commands
I want to review a few MySQL concepts that I reference often. These notes are a bit technical, but feel free to reach out if you'd like any help.
The my.cnf File
The my.cnf file stores your MySQL settings like username, password, and prompt. If you configure it properly:
- You won't need to include
-uand-pflags on every MySQL command - Database names will auto-complete with the Tab key after typing
mysql
To create the file, run vim ~/.my.cnf and add:
[client]
user=USER
password=USER_PASSWORD
host=localhost
[mysql]
prompt=\u@127.0.0.1 [\d]>
Creating a New User
Log in with a user that has permission to create users:
mysql -uroot -p
Then create a new user with this command:
GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost' IDENTIFIED BY 'password';
Replace database_name with a specific database, or use * to grant access to all databases.
Creating a New Database
You can create a database directly from the terminal:
mysql -uUSER -p -e "CREATE DATABASE database_name"
Exporting (Backing Up) a Database
This command creates a compressed SQL dump, typically saving about 80% disk space:
mysqldump -uUSER -p database_name | gzip -c > database_name.sql.gz
Quick Tip: Use the pv command to see progress:
mysqldump -uUSER -p database_name | pv | gzip -c > database_name.sql.gz
Importing (Restoring) a Database
First, create the database:
mysql -uUSER -p -e "CREATE DATABASE database_name"
Then import from a gzipped file using zcat:
zcat file.sql.gz | mysql -uUSER -p database_name
Resources
How was this article?
Related Posts
Linux 'z' command is a must have terminal tool
The Linux z command completely changes how you move around the terminal. Instead of typing long paths or relying on tab completion, z learns the directories you visit and lets you jump to them using short, partial names. Once you use it, going back to plain cd feels painfully slow.
If Searching for Quotes Breaks Your Software
When entering a single or double quote crashes your application, you likely have a SQL injection vulnerability. Here's what to do about it.
htop: A Better Process Viewer
Why htop is a must-have tool for viewing system processes on Linux.
Comments (0)
No comments yet. Be the first to share your thoughts!