Disabling InnoDB Encryption
Instructions for safely disabling encryption on InnoDB tables, emphasizing the critical need to decrypt all tablespaces and redo logs using background threads or ALTER TABLE.
Disabling Encryption for Automatically Encrypted Tablespaces
SET GLOBAL innodb_encrypt_tables = OFF;SET GLOBAL innodb_encryption_threads = 4;SET GLOBAL innodb_encryption_rotate_key_age = 1;Decryption Status
SELECT COUNT(*) AS "Number of Encrypted Tablespaces"
FROM information_schema.INNODB_TABLESPACES_ENCRYPTION
WHERE ENCRYPTION_SCHEME != 0
OR ROTATING_OR_FLUSHING != 0;Disabling Encryption for Manually Encrypted Tablespaces
Disabling Encryption for Temporary Tablespaces
Disabling Encryption for the Redo Log
See Also
Last updated
Was this helpful?

