Sign In
Sign In

Creating an SSH Tunnel for MySQL Remote Access

Creating an SSH Tunnel for MySQL Remote Access
Awais Khan
Technical writer
MySQL
27.12.2024
Reading time: 6 min

Maintaining a secure database environment is vital in today's digital age. It helps prevent breaches and ensure the confidentiality of your information. A highly effective process for enhancing MySQL connection security is by implementing an SSH tunnel for remote access. This approach establishes an encrypted tunnel between your device and the server, ensuring data remains secure.

SSH Tunneling

SSH tunneling, also referred to as SSH port forwarding, enables the secure transmission of data between networks. By establishing an encrypted SSH tunnel, data can be safely transferred without the risk of exposure to potential threats.

It possesses several benefits:

  • Security: Encrypts data, keeping it safe from being seen or intercepted by others.
  • Bypassing Restrictions: Allows access to services and resources blocked by firewalls.
  • Flexibility: Can handle all network traffic types, fitting many uses.

Types of SSH Tunneling

SSH tunneling is of three types:

  1. Local Port Forwarding: It lets you redirect a port from your local machine to a destination machine using a tunnel. This is the method used in our guide. For example:

ssh -L 3307:localhost:3306 your_username@your_server_ip
  1. Remote Port Forwarding: It lets you redirect a port from a remote machine to your local machine. This is useful for accessing local services from a remote machine. For example:

ssh -R 9090:localhost:80 your_username@your_server_ip
  1. Dynamic Port Forwarding: It lets you create a SOCKS proxy to dynamically forward traffic through an SSH tunnel. This is useful for secure web browsing or bypassing firewalls. For example:

ssh -R 9090:localhost:80 your_username@your_server_ip

Prerequisites

Before beginning, ensure you have:

  • SSH client (OpenSSH, or PuTTY for Windows)
  • MySQL server info
  • SSH into the MySQL host machine securely.

Setting Up Remote Access

Go through these essential steps to securely set up remote access to your MySQL server through SSH tunnel:

Step 1: Facilitate Connectivity

For remote access, tune it to listen on an external IP. This allows SQL access from localhost to all IPs. Here’s how to do it:

Access MySQL Config File

Using a text editor, access the config file. On Ubuntu, it's typically located at:

sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf

If the file isn't in its expected place, search for it with:

sudo find / -name mysqld.cnf

Edit bind-address

Inside the file, find bind-address line, which is set to 127.0.0.1 by default, limiting server to local connections:

Image1

Change the address to allow connections from all IP addresses by setting it to 0.0.0.0.

Save changes by pressing Ctrl+X, Y to confirm, and Enter to exit.

Restart MySQL

Restart service to apply the updated settings:

sudo systemctl restart mysql

Image3

Step 2: Adjust Firewall

By default, 3306 is the standard port in MySQL. To permit remote access, ensure this port is opened in your firewall settings. Tailor these steps to your specific firewall service.

Open Port via UFW

On Ubuntu, UFW is a pre-installed firewall utility. To allow traffic on 3306:

sudo ufw allow from remote_ip to any port 3306

Substitute remote_ip with actual IP.

Image2

Open Port via Firewalld

On Red Hat-based and Fedora systems, Firewalld is the primary firewall tool. To open port 3306 for traffic, run these commands:

sudo firewall-cmd --zone=public --add-service=mysql --permanent
sudo firewall-cmd --reload

The first command permanently allows MySQL traffic, and the second reloads the firewall to make the changes.

Step 3: Open Your SSH Client

Fire up your go-to SSH client. Opt for PuTTY on Windows, or the terminal if using macOS or Linux.

Using Terminal (Linux or macOS)

Implement this command:

ssh -L 3307:localhost:3306 your_username@your_server_ip
  • 3307: It's the local port your computer will listen to.

  • localhost: It's a MySQL server address used by the SSH. It's where the service runs on the machine you're connecting to.

  • 3306: The remote port where the server listens for incoming connections.

  • username@server_ip: Your SSH login details.

When required, verify the server's fingerprint. Confirm it matches by typing "yes" and pressing Enter. 

Image5

Once confirmed, enter your SSH password if asked and press Enter for tunneling.

Image4

After the tunnel is up, all traffic destined to local port 3307 will be forwarded to the remote machine in a secure fashion.

Using PuTTY (Windows)

Windows users can use the below-given instructions to perform tunneling:

  • Launch PuTTY.

  • From the left menu, direct to Connection > SSH > Tunnels.

Image7

  • Input 3307 for Source port and localhost:3306 for the Destination field. Then hit Add.

Image6

  • Navigate back to Session menu, enter server’s IP address and start the session using the Open button.

Image9

Step 4: Connect to MySQL

After setting up the tunnel, seamlessly link to the server through:

sudo mysql -h localhost -P 3307 -u your_mysql_user -p

Image8

Step 5: Verify the Connection

Log into server and check if you can run queries:

Image10

Additional Safeguards for Enhanced Security

To further enhance the MySQL remote access security, consider the following:

Implement Robust Passwords and Authentication

Ensure using strong, unique passwords for both servers accounts. Implement key-based SSH authentication for added security. Here's how to set up SSH key authentication:

  • Generate an SSH key pair via:

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  • Copy the public key to the server via:

ssh-copy-id your_username@your_server_ip

Regularly Update Your Software

Ensure that your server, client, and all associated software are consistently updated with the latest security patches and enhancements. This practice safeguards your system against known vulnerabilities and potential threats.

Supervise and Audit Access

Consistently examine access logs on both your MySQL and SSH server. Watch for any unusual activities or unauthorized attempts to gain access. Set up logging for both services:

  • Check the SSH logs via:

sudo tail /var/log/auth.log
  • Enable and check MySQL logs by adding the below-given lines in the configuration file:

[mysqld]
general_log = 1
general_log_file = /var/log/mysql/mysql-general.log
  • You can view the general query log via:

sudo cat /var/log/mysql/mysql-general.log
  • To continuously monitor the log file in real time, use:

sudo tail -f /var/log/mysql/mysql-general.log

Implement IP Whitelisting

Limit access to your MySQL by applying IP whitelisting. It ensures that connections are permitted only from specified IP addresses, thereby enhancing security:

sudo ufw allow from your_trusted_ip to any port 3306

Replace your_trusted_ip with the IP address you trust.

Troubleshooting Issues

Here are a few common problems and solutions:

  • Unable to Connect: Check SSH configuration and firewall rules. Ensure the SSH tunnel is correctly established and the server is reachable.

  • Port Already in Use: Change the local forwarding port from 3307 to another available port.

  • Authentication Errors: Verify your server's credentials. Ensure that the correct user permissions are set.

  • MySQL Server Not Listening on Correct IP: Double-check the MySQL bind-address configuration and ensure the server is listening on the correct IP.

Conclusion

By adhering to this guide, you'll securely connect to your MySQL database via an SSH tunnel. This method not only boosts security but also enhances remote database management efficiency. 

Regularly check your SSH tunnel setup to ensure a stable, secure connection. This practice ensures your data stays protected, providing peace of mind for seamless database operations.

Hostman provides pre-configured and ready-to-use cloud databases, including cloud MySQL.

MySQL
27.12.2024
Reading time: 6 min

Similar

MySQL

How to Import and Export Databases in MySQL or MariaDB

Database management is a crucial aspect of Linux server and web application administration. Importing and exporting databases are essential tasks for DevOps and system administrators. At a minimum, developers should know how to back up databases and transfer them between servers. This guide explains how to import and export database dumps in MySQL or MariaDB on a Linux server (using Ubuntu as an example). Working with Databases MySQL and MariaDB are popular relational database management systems (RDBMS) used for storing data in large applications. MariaDB is a fork of MySQL developed by its original creators due to licensing concerns following Oracle's acquisition of MySQL. Both MariaDB and MySQL share identical or similar APIs and operating mechanisms. Creating a Database Connect to MySQL or MariaDB with root privileges: For MySQL: mysql -u root -p   For MariaDB: mariadb -u root -p   Create a database (if it doesn't already exist): CREATE DATABASE IF NOT EXISTS <database_name>; Viewing Databases To see the list of available databases: SHOW DATABASES; Switching Databases To switch to a specific database: USE <database_name>; Viewing Tables To list all tables in the selected database: SHOW TABLES; Common SQL Commands Creating a table: CREATE TABLE IF NOT EXISTS users (  user_id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,  username VARCHAR(100) NOT NULL); This creates a table named users with fields user_id and username. Inserting data into the table: INSERT INTO users (username) VALUES ('John Doe'); This adds a new row to the users table. Selecting all rows from the table: SELECT * FROM users; Monitoring MySQL/MariaDB status To check the server's global status and statistics: SHOW GLOBAL STATUS; Exporting Databases Exporting data from MySQL or MariaDB can be efficiently done using the mysqldump CLI utility or third-party tools like phpMyAdmin. The mysqldump utility allows you to save your database as an SQL dump, which contains the necessary commands for creating columns and populating them with data. This dump file can be easily managed, imported, or transferred. You will need: A database you want to export. User credentials with at least read access to the database. In the terminal, run the following command: mysqldump -u <username> -p<password> <database_name> > db_dump.SQL Where: -p<password>: Password for the database user (you can omit the password and simply use -p to prompt for it manually). db_dump.SQL: The name of the output dump file. <username>: The privileged user with read access. <database_name>: The name of the database you are exporting. To create dumps from a remote server, add the -h flag: mysqldump -h <ip-address> -u <username> -p<password> <database_name> > db_dump.SQL If the MySQL server uses a non-standard port, specify it with the -P flag: mysqldump -h <ip-address> -P <port> -u <username> -p<password> <database_name> > db_dump.SQL While the default export format is SQL, mysqldump also supports exporting data as CSV, XML, and other formats by configuring additional parameters. The SQL dump typically includes: Information about the RDBMS (MySQL or MariaDB) Commands for creating the required tables and their columns Data to populate those columns By default, it provides a comprehensive snapshot of the database structure and contents, making it an essential tool for database backups and migrations. Importing Data into MySQL or MariaDB To import a database dump, you don’t need mysqldump; a direct call to MySQL will suffice. Run the following command in your terminal: mysql -u <username> -p<password> <new_database_name> < db_dump.SQL Where: -p<password>: The user's password (use -p without the password to be prompted manually). db_dump.SQL: The dump file containing your database data. <username>: A privileged user with write access. <new_database_name>: The name of the target database to which you are importing the dump. If the process completes successfully, there will be no output. If any errors or warnings occur, MySQL or MariaDB will display them. You can check if the import was successful with these commands: SHOW DATABASES;  -- Lists all databasesUSE <database_name>;  -- Selects the target databaseSHOW TABLES;  -- Lists all tables within the selected database By executing these commands, you can confirm that the database structure and data have been imported correctly. Creating a systemd Service for Backup Suppose you want to automate the database backup (export) process. In this guide, we will create a service-timer that will trigger a script for backing up data. A Timer is a mechanism used to schedule the execution of a specific service at a given time or through certain intervals. Follow these steps to set it up: First, connect to the server and create the directory for backup scripts: mkdir -p /usr/bin/backup_scripts  # Create directory for backup scripts Create and open the file /usr/bin/backup_scripts/mysql_backup.sh in any text editor (e.g., nano): nano /usr/bin/backup_scripts/mysql_backup.sh Inside the file, add the following script: TIMESTAMP=$(date +'%F') # Get the current date BACKUP_DIR='<path_to_backup_directory>' MYSQL_USER='<username>' MYSQL_PASSWORD='<password>' DATABASE_NAME='<database_name>' mkdir -p "$BACKUP_DIR/$TIMESTAMP" # Create directory for this date mysqldump -u $MYSQL_USER -p$MYSQL_PASSWORD $DATABASE_NAME > "$BACKUP_DIR/$TIMESTAMP/$DATABASE_NAME-$TIMESTAMP.sql" # Create dump find "$BACKUP_DIR" -type d -mtime +28 -exec rm -rf {} \; # Delete backups older than 28 days Replace the placeholder variables with the actual backup directory path, MySQL user credentials, and the database name. Grant execution permissions to the script: chmod +x /usr/bin/backup_scripts/mysql_backup.sh Create the service file /etc/systemd/system/mysql-backup.service: sudo nano /etc/systemd/system/mysql-backup.service Add the following content: [Unit] Description=MySQL Database Backup Service [Service] Type=oneshot ExecStart=/usr/bin/backup_scripts/mysql_backup.sh [Install] WantedBy=multi-user.target Create the timer file: sudo nano /etc/systemd/system/mysql-backup.timer Add this content to schedule the backup: [Unit] Description=Run MySQL Backup Service Weekly [Timer] OnCalendar=weekly Persistent=true [Install] WantedBy=timers.target Reload the systemd configuration, enable the timer for autostart, and start it: systemctl daemon-reload  # Reload systemd configurationsystemctl enable mysql-backup.timer  # Enable timer to start automaticallysystemctl start mysql-backup.timer  # Start the timer Check the status of the timer and ensure it is working: systemctl status mysql-backup.timersystemctl list-timers  # Lists active timers Now, your system will automatically create a backup of the specified database every week. Export and Import via phpMyAdmin You can perform database imports and exports not only through command-line utilities but also through the phpMyAdmin web interface. This method is typically more convenient when the dump size is small (less than 1GB). This section will cover the basic process of importing and exporting databases. Export To export a database: Go to the phpMyAdmin interface and select the desired database from the left-hand panel. Click on the Export tab. Choose export method: Quick Export: Select this if you want a basic export with default settings. Custom Export: Choose this for more specific export options, such as selecting certain tables, formats, or compression methods. Click Export. To export specific tables: Click on the database name in the left sidebar to view its tables. Select the tables you want to export by checking the boxes next to their names. At the bottom of the page, choose Export from the list of actions. On the next page, verify the export format and options, then click Go to save the dump to your local machine. Import The process of importing a database is very similar to exporting. Follow these steps: Open phpMyAdmin and navigate to the database you want to import into. If the database doesn't exist, create it by clicking Create Database from the left sidebar. Inside the database, click on the Import tab. Click the Choose File button to browse for and select the SQL dump file from your device. Choose the necessary options like file encoding, format (typically default settings are fine), and other options as needed. Click Go to start the import process. Once the process is complete, you will see the imported files and their contents listed in the left sidebar. You can also modify them if needed. Conclusion The choice of method depends on your needs: phpMyAdmin is ideal for manually creating backups or for quick access to a database. It’s user-friendly and simple for small-scale tasks. Using command-line utilities would be more efficient and flexible for automation or if you’re transferring infrastructure. Frequently Asked Questions How do I export a MySQL or MariaDB database? Use mysqldump just like in MySQL: mysqldump -u user db > file.sql. How do I import a database dump in MariaDB? Run: mysql -u user dbname < dump.sql. Can I use the same dump file for both MySQL and MariaDB? Yup — standard SQL dumps work seamlessly between the two. How do I perform a MySQL import database operation from a dump file? Use the command mysql -u username -p database_name < backup.sql to import a database from a SQL dump file.
16 June 2025 · 8 min to read
MySQL

How to Create a MySQL Database Dump

MySQL is the most popular relational database management system that performs various operations with tables, such as adding, deleting, searching, sorting, and outputting data based on user queries. It's important to understand that MySQL controls databases but is not itself a database. Therefore, MySQL and the database are separate entities: MySQL is a program that operates on information. The database is the information recorded on a hard disk. Based on this architecture, MySQL supports exporting information — creating a database dump. This functionality allows several useful operations: Database Backup: Unexpected situations when using cloud (or local) servers can lead not only to system failures but also to data loss. Therefore, it’s important to regularly create database dumps, which can be stored on other secure storage devices. Database Transfer from One Server to Another: Manually copying database elements may be challenging or impossible when migrating from one server to another. A dump makes it possible to transfer data quickly. A database dump is essentially a sequential set of SQL instructions that create an exact copy of the original database, including both its structure and content. This guide will cover the primary methods for creating a database dump and importing it back into MySQL to restore data. Preparing a Test Database We will create a cloud database to test the examples in this guide. If you already have a MySQL database where you can test the dump creation function, you can skip this step. In the Hostman panel, we will create a MySQL 8 database, leaving all other parameters as default. You can connect to the cloud database via a terminal. The necessary command can be copied from the control panel. Let's connect to our database: mysql -u USER -p'PASSWORD' -h HOST -P 3306 -D DATABASE For example, a real connection command might look like this: mysql -u gen_user -p'sU}NEyx#<2P~\e' -h 91.206.179.29 -P 3306 -D default_db Next, we need to create a simple table consisting of three columns: CREATE TABLE People ( id INT, name VARCHAR(255) NOT NULL, bord DATE ); And populate it with some values: INSERT INTO People VALUES (120, 'Natalie', NOW()), (121, 'Meredith', NOW()), (122, 'James', NOW()); This fills the new database so that we can later create a dump from it. By the way, on the Users tab of the database management page, there are buttons that open interfaces for graphical MySQL database administration tools — phpMyAdmin and Adminer. Method 1: Console Terminal A more traditional but less interactive way to create a MySQL database dump is by using the appropriate command in a console terminal. To do this, you need to connect to MySQL via an SSH connection and then enter the dump creation command: mysqldump -u USER -p'PASSWORD' -h ADDRESS -P PORT DATABASE > FILE Let's break down each of the specified parameters: USER: The username used to authenticate in MySQL. PASSWORD: The password for the user to authenticate in MySQL. ADDRESS: The IP address of the remote MySQL server. PORT: The port of the remote MySQL server. DATABASE: The name of the database to be dumped. FILE: The name of the file where the database dump will be saved on the local machine. There are two possible ways to create a dump via the console: Local MySQL: The dump is created from a database located on a local MySQL server. In this case, we don’t need to specify the ADDRESS and PORT parameters. Remote MySQL: The dump is created from a database located on a remote MySQL server. In this case, you need to specify ADDRESS and PORT. Local MySQL dump command example: mysqldump -u admin -p'qwerty123' default_db > just_dump.sql Remote MySQL dump command example: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db > just_dump.sql In both cases, for security reasons, you can omit the explicit password specification — this way, the system will prompt you to enter the password manually: mysqldump -u admin -p default_db > just_dump.sqlmysqldump -u admin -p -h 91.206.179.29 -P 3306 default_db > just_dump.sql Warnings and Errors After executing the command, several warnings and errors may appear in the console output. Let’s break down each message in detail. Password Security Warning The first warning from MySQL notifies you about the insecurity of using a password as an explicit parameter: mysqldump: [Warning] Using a password on the command line interface can be insecure. To suppress this warning, use the -p flag without specifying the password directly. Global Transaction Identifier (GTID) Warning The next warning concerns the inclusion of the Global Transaction Identifier (GTID) in the resulting dump and suggests disabling it with the --set-gtid-purged=OFF flag: Warning: A partial dump from a server that has GTIDs will by default include the GTIDs of all transactions, even those that changed suppressed parts of the database. If you don't want to restore GTIDs, pass --set-gtid-purged=OFF. To make a complete dump, pass --all-databases --triggers --routines --events. GTID (Global Transaction Identifier) is a unique 128-bit identifier associated with each transaction, which improves overall data consistency. Disabling GTID may lead to data inconsistency (for example, due to duplication of certain SQL statements). Data Dump Consistency Warning Another GTID-related warning indicates that the dump operation is not atomic: Warning: A dump from a server that has GTIDs enabled will by default include the GTIDs of all transactions, even those that were executed during its extraction and might not be represented in the dumped data. This might result in an inconsistent data dump.In order to ensure a consistent backup of the database, pass --single-transaction or --lock-all-tables or --master-data. This means that database changes performed by other applications during the dump creation may be missing, leading to data inconsistency. To avoid this issue, use one of the following flags: --single-transaction to create the dump within a single transaction. --lock-all-tables to block any other operations on the database during the dump. Access Denied Error You might encounter an error preventing the dump creation due to insufficient privileges: mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces Even if the user specified in the command has all database privileges, they may lack the global PROCESS privilege. To grant this privilege, execute the following command: GRANT PROCESS ON *.* TO 'admin'@'localhost'; However, this is not the best solution from a security perspective. Instead of granting global privileges, it's better to use the --no-tablespaces flag during the dump command execution. With all the additional flags, the dump creation command will look like this: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql In this case, only one harmless warning will remain about explicitly specifying the password: mysqldump: [Warning] Using a password on the command line interface can be insecure. Non-existent Database Error If you accidentally specify the name of a non-existent database, an unclear error will appear denying access to the database for the specified user: ERROR 1044 (42000): Access denied for user 'admin'@'%' to database 'default_db' This can cause confusion, so always double-check the accuracy of the database name specified in the command. Dump File After successfully executing the dump command, you can check the file system using: ls You should see the corresponding database dump file: just_dump.sql  resize.log  snap Although you can open this file in any text editor, its size may be quite large, especially if the original database contained a lot of information: cat just_dump.sql At the beginning of the file, there is information about the created dump, followed by SQL instructions: -- MySQL dump 10.13 Distrib 8.0.40, for Linux (x86_64) -- -- Host: 37.220.80.65 Database: default_db -- ------------------------------------------------------ -- Server version 8.0.22-13 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; ... /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-01-19 5:33:16 The output file doesn't have to be saved in the current directory; you can specify any other directory: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --no-tablespaces --set-gtid-purged=OFF --single-transaction > /tmp/just_dump.sql In this case, we create the dump file just_dump.sql in the /tmp directory. Dumping Multiple Databases In real projects, MySQL often handles multiple databases. You can use a special flag to dump all existing databases: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 --all-databases --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql This command differs from the previous one only in that the --all-databases flag is specified instead of a specific database name. Alternatively, you can list the databases you want to include in the dump: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 db_first db_second db_third --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql Structure Without Data You can create a dump containing only the database structure (table schemas) without any data by using the --no-data flag: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --no-data --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql Specific Tables Instead of dumping an entire MySQL database, you can dump only specific tables by listing their names after the database name: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db table1 table2 --no-data --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql On the other hand, you can dump a database excluding specific tables using the --ignore-table parameter: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --ignore-table=default_db.logs --no-data --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql Note that the table name must always be preceded by the database name and separated by a dot. To exclude multiple tables, list each one with the --ignore-table option: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --ignore-table=default_db.table1 --ignore-table=default_db.table2 --no-data --no-tablespaces --set-gtid-purged=OFF --single-transaction > just_dump.sql Character Encoding In some cases, it may be necessary to explicitly specify the character encoding for the dump: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --no-tablespaces --set-gtid-purged=OFF --single-transaction --default-character-set=utf8 > just_dump.sql Typically, UTF-8 is the preferred character encoding. Archiving the Dump Sometimes it’s useful to compress the dump immediately after creation. You can do this by piping the mysqldump output into gzip, then saving the compressed archive: mysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --no-tablespaces --set-gtid-purged=OFF --single-transaction | gzip > just_dump.sql.gz If you check the current directory with the ls command, you’ll see the compressed dump: just_dump.sql  just_dump.sql.gz  resize.log  snap Restoring Data A database dump is usually created to restore data in the future, for example, in case of data loss or server migration. To load the database dump into MySQL and restore data, use the following command: mysql -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db < just_dump.sql If the dump file size is too large, MySQL may have a default limit that prevents loading it. To adjust the maximum allowed dump size, you can use the --max_allowed_packet flag: mysql -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db --max_allowed_packet=64M < just_dump.sql In this example, the maximum allowed dump size is set to 64 MB. mysql -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 default_db < just_dump.sqlmysqldump -u admin -p'qwerty123' -h 91.206.179.29 -P 3306 --all-databases --no-tablespaces --set-gtid-purged=OFF > just_dump.sql Method 2: Using phpMyAdmin If you're using phpMyAdmin, creating a database dump can be done through the graphical interface without manually executing commands — phpMyAdmin handles everything for you. Log In to phpMyAdmin. Open the phpMyAdmin interface and log in with your credentials.  Select the database. In the left sidebar, choose the database you want to export. This will open a page displaying the list of existing tables within the selected database. Configure the export. Click the Export button. It will take you to a dedicated page to configure the database export (dump). You can also access the export page from the phpMyAdmin home page, but doing so may not display all databases available for export. It's better to first navigate to the specific database and then click Export. Note that phpMyAdmin allows exporting only databases that contain tables. Empty databases cannot be exported. There are two export options in phpMyAdmin: Quick Export. It creates the dump using default export settings. Custom Export. It Allows you to manually configure the export settings, such as excluding specific tables, changing character encoding, and adjusting format options. phpMyAdmin supports exporting to various formats beyond just SQL, such as PDF, JSON, CSV, YAML, and others. The configuration options for creating a dump in phpMyAdmin are more user-friendly and visually intuitive than command-line flags. Start the export. Once you've configured all the export parameters, scroll down and click the Export button. The dump file will be generated and downloaded through your browser. Method 3: Using Adminer Creating a database dump in Adminer is very similar to phpMyAdmin. In fact, Adminer’s graphical interface is even simpler. Log In to Adminer: Start by logging into Adminer, then navigate to the export page by clicking the Export link in the left sidebar. Configure the Export. Adminer does not have predefined export types, so the system immediately offers all configuration options. You can select specific database tables to include in the dump. The dump file can be either saved (in a specific format or as a GZIP archive) or opened in a new window for manual copying of SQL instructions. Conclusion The native way to create a MySQL database dump, without requiring additional tools, is by using the mysqldump command with additional parameters. An alternative is to use visual database management tools with graphical interfaces. Utilities like phpMyAdmin or Adminer simplify database interactions by providing a user-friendly and interactive environment. This is particularly useful for those who are not well-versed in SQL syntax, turning tasks such as creating a dump into a series of simple mouse clicks. Frequently Asked Questions What is the command to create a MySQL dump? Just run: mysqldump -u username -p database_name > backup.sql. Simple and effective. How do I compress a MySQL dump file? Pipe it through gzip: mysqldump ... | gzip > backup.sql.gz. Saves space and upload time. Is mysqldump suitable for large databases? It works, but for very large datasets, check out tools like mydumper or solutions from Percona.
16 June 2025 · 13 min to read
MySQL

MySQL Data Types: Overview, Usage Examples & Best Practices

When setting up a database in MySQL, the user must assign a name and a data type to each column in a table. This process helps the system understand exactly what kind of data will be stored and how it will be processed, as well as determines the amount of memory required. There are several main classes of data types in MySQL tables, including numeric, character, date and time, and others. Each class contains several unique data types. It's important to define them correctly during the initial stage of table creation to avoid issues once the full database structure is complete. This article describes the main MySQL data types, their structure, valid values, and recommended usage. Numeric Types MySQL supports all standard SQL numeric data types, which are used to store numbers. This article covers: Integers; Floating-point numbers; Fixed-point numbers. Each of these will be described in more detail below. Integers Used to store signed or unsigned integers. Signed types can store both positive and negative numbers, while unsigned types store only positive numbers, effectively doubling the range. There are five main integer types: TINYINT, SMALLINT, MEDIUMINT, INT, and BIGINT. The primary difference is the range of values they can store—the larger the range, the more memory is required. It's important to select the right type to efficiently allocate memory when creating tables. Type Memory (bytes) Signed Range Unsigned Range TINYINT 1 -2⁷ to 2⁷-1 0 to 2⁸-1 SMALLINT 2 -2¹⁵ to 2¹⁵-1 0 to 2¹⁶-1 MEDIUMINT 3 -2²³ to 2²³-1 0 to 2²⁴-1 INT 4 -2³¹ to 2³¹-1 0 to 2³²-1 BIGINT 8 -2⁶³ to 2⁶³-1 0 to 2⁶⁴-1 Specifying size (e.g., MEDIUMINT(6)) does not affect the range. It's purely cosmetic and used by some tools to pad shorter numbers with spaces. You can also use the ZEROFILL attribute to pad with zeros instead of spaces, e.g., SMALLINT(8) ZEROFILL will display 256 as 00000256. Floating-Point Numbers Used to store approximate numeric values. MySQL lets you define floating-point precision as: FLOAT(p) Where p is the precision from 0 to 53. If p is less than 25, FLOAT() (single precision) is used; otherwise, DOUBLE() (double precision) is used. Type Memory (bytes) Value Range FLOAT 4 ~±3.4028 × 10³⁸ DOUBLE 8 ~±1.7976 × 10³⁸ Fixed-Point Numbers Used to store exact values with a specified precision. The DECIMAL or NUMERIC types are used, typically for financial calculations where rounding is unacceptable. Defined as: DECIMAL(M, D) M: Total number of digits (up to 65; default is 10). D: Number of digits after the decimal point (0–30, default is 0). Example: DECIMAL(6, 3) Stores values like -999.999 to 999.999. DECIMAL and NUMERIC are functionally equivalent. Character Types Designed for storing short texts, the character data types in MySQL include CHAR and VARCHAR. They are similar to each other, with the main difference being how the data is stored and retrieved. CHAR stores a fixed-length string (from 0 to 2⁸−1 characters), which is defined at the time of table creation. If we insert a string shorter than the specified length, the remaining characters are padded with spaces. The VARCHAR data type in MySQL stores a variable-length string (from 0 to 2¹⁶−1 characters), also defined during table creation. Unlike CHAR, it stores only the specified number of characters and allocates 1 byte to store the length of the string. If the input string exceeds the defined length for either CHAR or VARCHAR, it is truncated to fit the allowed length. During table creation, if CHAR and VARCHAR columns are combined, MySQL will convert the CHAR column to VARCHAR. To illustrate the difference, here's a table showing how strings of various lengths are stored using CHAR(5) and VARCHAR(5): String CHAR(5) VARCHAR(5) 'A' 'A ' 'A' 'Hello' 'Hello' 'Hello' 'Example' 'Examp' 'Examp' Text and Binary Types The TEXT data type in MySQL is used for storing large text-based data, while the BLOB type is designed for binary data, such as images, compiled code, or audio. These two types are similar in many ways, but the main difference lies in how data is stored and processed: For BLOB, sorting and comparisons are case-sensitive. For TEXT, sorting and comparisons are case-insensitive. MySQL cannot index the full length of TEXT or BLOB fields and does not support sorting using full-field indexes for these types. If the length of a string exceeds the maximum allowed by a TEXT or BLOB type, the input will be truncated to fit the allowed size. Below is a table showing all variants of the TEXT type, the required memory size, and the maximum number of characters allowed: Type Memory Size (bytes) Max Characters TINYTEXT 2⁸−1 Up to 2⁸−1 TEXT 2¹⁶−1 Up to 2¹⁶−1 MEDIUMTEXT 2²⁴−1 Up to 2²⁴−1 LONGTEXT 2³²−1 Up to 2³²−1 The BLOB types follow the same structure and size limits as their TEXT counterparts. Here's the equivalent table for BLOB types: Type Memory Size (bytes) Max Bytes TINYBLOB 2⁸−1 Up to 2⁸−1 BLOB 2¹⁶−1 Up to 2¹⁶−1 MEDIUMBLOB 2²⁴−1 Up to 2²⁴−1 LONGBLOB 2³²−1 Up to 2³²−1 Date and Time MySQL provides several data types for storing date and time information. The table below summarizes each type, along with memory usage and key details: Type Memory (bytes) Description DATE 3 Stores only the date in the format 'YYYY-MM-DD'. Separators can be any non-numeric character (not just dashes). Range: January 1, 1000 to December 31, 9999. DATETIME 8 Stores both date and time in the format 'YYYY-MM-DD HH:MM:SS'. Range: 00:00:00 on January 1, 1000 to 23:59:59 on December 31, 9999. TIMESTAMP 4 Also stores date and time in the same format as DATETIME, but uses half the memory. Range: 00:00:01 on January 1, 1970 to 03:14:07 on January 9, 2038. TIME 3 Stores only time in 'HH:MM:SS' or 'HHH:MM:SS' format for large hour values. Range: −838:59:59 to 838:59:59. YEAR 1 Stores only the year in 'YYYY' format. Range: 1901 to 2155, plus 0000 is allowed. JSON MySQL supports a native JSON (JavaScript Object Notation) data type, introduced in version 5.7.8, offering the following advantages over storing JSON as plain text: Automatic validation: MySQL ensures that stored data is valid JSON. Optimized storage format: JSON data is internally converted to a binary representation for faster access and querying. The memory required for JSON storage is approximately equivalent to LONGTEXT. Composite Types MySQL provides special string data types that store values from a predefined, fixed set. These include ENUM and SET. ENUM stores a single value from the defined list. It requires up to 2 bytes of memory. SET, on the other hand, can store up to 26 values simultaneously from the list and uses up to 8 bytes of memory. For example, if a user defines the following list for ENUM: ENUM('a', 's', 'd') Then the column can only contain one of the following values: 'a', 's', or 'd'. If the same list is defined for SET: SET('a', 's', 'd') Then the column can contain any combination of the listed values, including: 'a' 's' 'd' 'a,s' 'a,d' 's,d' 'a,s,d' or an empty set ('') If a user inserts a value like ('a', 's', 'a') into a SET, MySQL will automatically deduplicate the entries and sort them based on the original declaration order. So the stored value will be 'a,s'. Conclusion This article covered the most commonly used MySQL data types for defining table columns. With this knowledge, users can select the appropriate types and design their database structure effectively. For more detailed and less frequently used data types, refer to the official MySQL documentation. You can use Hostman cloud databases to practice working with MySQL and its different data types. Key advantages of using MySQL in the cloud include: Database maintenance and configuration by the service provider; Reliability, high availability, and fault tolerance; Automatic backups; Fast horizontal and vertical scaling; Continuous operation through cluster replication; Database operation on the computational resources of a cloud platform.
06 June 2025 · 7 min to read

Do you have questions,
comments, or concerns?

Our professionals are available to assist you at any moment,
whether you need help or are just unsure of where to start.
Email us
Hostman's Support