MySQL
Learn about running secure, Managed MySQL Databases on Aptible
Available Versions
The following versions of MySQL are currently available:
Version | Status | End-Of-Life Date | Deprecation Date |
---|---|---|---|
8.0 | Available | April 2026 | August 2026 |
MySQL releases LTS versions on a biyearly cadence and fully end-of-lifes (EOL) major versions after 8 years of extended support.
DEPRECATED
on the deprecation date listed above. While existing databases will not be affected, we recommend end-of-life databases to be upgraded. The latest version offered on Aptible will always be available for provisioning, regardless of end-of-life date.Connecting with SSL
If you get the following error, you’re probably not connecting over SSL:
Some tools may require additional configuration to connect with SSL to MySQL:
- When connecting via the
mysql
command line client, add this option:--ssl-cipher=DHE-RSA-AES256-SHA
. - When connecting via JetBrains DataGrip (through
aptible db:tunnel
), you’ll need to setuseSSL
totrue
andverifyServerCertificate
tofalse
in the Advanced settings tab for the data source.
Most MySQL clients will not attempt verification of the server certificate by default; please consult your client’s documentation to enable verify-identity
, or your client’s equivalent option. The relevant documentation for the MySQL command line utility is here.
By default, MySQL Databases on Aptible use a server certificate signed by Aptible for SSL / TLS termination. Databases that have been running since prior to Jan 15th, 2021, will only have a self-signed certificate. See Database Encryption in Transit for more details.
Connecting without SSL
For debugging purposes, you can connect to MySQL without SSL using the aptible-nossl
user. As the name implies, this user does not require SSL to connect.
Connecting as root
If needed, you can connect as root
to your MySQL database. The password for root
is the same as that of the aptible
user.
Creating More Databases
Aptible provides you with full access to a MySQL instance. If you’d like to add more databases, you can do so by Connecting as root
, then using SQL to create the database:
Replication
Source-replica replication is available for MySQL. Replicas can be created using the aptible db:replicate
command.
Failover
MySQL replicas can accept writes without being promoted. However, it should still be promoted to stop following the source Database so that it doesn’t encounter issues when the source Database becomes available again. To do so, run the following commands on the Database:
STOP REPLICA IO_THREAD
- Run
SHOW PROCESSLIST
until you seeHas read all relay log
in the output. STOP REPLICA
RESET MASTER
After the replica has been promoted, you should update your Apps to use the promoted replica as the primary Database. Once you start using the replica, you should not go back to using the original primary Database. Instead, continue using the promoted replica and create a new replica off it it.
Aptible maintains a link between replicas and their source Database to ensure the source Database cannot be deleted before the replica. To deprovision the source Database after you’ve failed over to a promoted replica, users with the appropriate roles and permissions can unlink the replica from the source Database. Navigate to the replica’s settings page to complete the unlinking process. See the Deprovisioning a Database documentation for considerations when deprovisioning a Database.
Data Integrity and Durability
On Aptible, binary logging is enabled (i.e., MySQL is configured with sync-binlog = 1
). Committed transactions are therefore guaranteed to be written to disk.
Configuration
We strongly recommend against relying only on SET GLOBAL
with Aptible MySQL Databases.
Any configuration parameters added using SET GLOBAL
will be discarded if your Database is restarted (e.g. as a result of exceeding Memory Limits, the underlying hardware crashing, or simply as a result of a Database Scaling operation). In this scenario, unless your App automatically detects this condition and uses SET GLOBAL
again, your custom configuration will no longer be present.
However, Aptible Support can accommodate reasonable configuration changes so that they can be persisted across restarts (by adding them to a configuration file). If you’re contemplating using SET GLOBAL
, please get in touch with Aptible Support to apply the setting persistently.
MySQL Databases on Aptible autotune their buffer pool and chunk size based on the size of their container to improve performance. The innodb_buffer_pool_size
setting will be set to half of the container memory, and innodb_buffer_pool_chunk_size
and innodb_buffer_pool_instances
will be set to approriate values. You can view all buffer pool settings, including these autotuned values, with the following query: SHOW VARIABLES LIKE 'innodb_buffer_pool_%'
.
Connection Security
Aptible MySQL Databases support connections via the following protocols:
- For MySQL version 5.6 and 5.7:
TLSv1.0
,TLSv1.1
,TLSv1.2
- For MySQL version 8.0: TLSv1.2, TLSv1.3