mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
MDEV-8775 enabling encryption is too error-prone
create a "preset" file to enable all encryption options at once
This commit is contained in:
parent
7bd2f20e88
commit
416b811a4a
2 changed files with 18 additions and 0 deletions
|
|
@ -93,6 +93,8 @@ IF(UNIX)
|
|||
COMPONENT Client)
|
||||
INSTALL(FILES rpm/server.cnf DESTINATION ${INSTALL_SYSCONF2DIR}
|
||||
COMPONENT IniFiles)
|
||||
INSTALL(FILES rpm/enable_encryption.preset DESTINATION ${INSTALL_SYSCONF2DIR}
|
||||
COMPONENT IniFiles)
|
||||
ENDIF()
|
||||
|
||||
# This is for SuSE:
|
||||
|
|
|
|||
16
support-files/rpm/enable_encryption.preset
Normal file
16
support-files/rpm/enable_encryption.preset
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#
|
||||
# !include this file into your my.cnf (or any of *.cnf files in /etc/my.cnf.d)
|
||||
# and it will enable data at rest encryption. This is a simple way to
|
||||
# ensure that everything that can be encrypted will be and your
|
||||
# data will not leak unencrypted.
|
||||
#
|
||||
# If in the future more encryption related options will be implemented,
|
||||
# this file will enable them too.
|
||||
#
|
||||
[mariadb]
|
||||
aria-encrypt-tables
|
||||
encrypt-binlog
|
||||
encrypt-tmp-disk-tables
|
||||
encrypt-tmp-files
|
||||
loose-innodb-encrypt-log
|
||||
loose-innodb-encrypt-tables
|
||||
Loading…
Add table
Add a link
Reference in a new issue