Aria Disabling Encryption
Instructions for safely disabling encryption on Aria tables, emphasizing the need to rebuild tables to an unencrypted state before removing key management plugins.
Disabling Encryption on User-Created Tables
SET GLOBAL aria_encrypt_tables = OFF;SELECT TABLE_SCHEMA, TABLE_NAME
FROM information_schema.TABLES
WHERE ENGINE = 'Aria'
AND ROW_FORMAT = 'PAGE'
AND TABLE_SCHEMA != 'information_schema'
AND CREATE_OPTIONS LIKE '%`encrypted`=yes%';Disabling Encryption for Internal On-Disk Temporary Tables
Last updated
Was this helpful?

