-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Developed the 'MariadbStartEncryptionEvent' (#415)
* implement StartEncryptionEvent * Completed setup of MariaDB test environment. * Fix: Correct assertion in test_basic:_allowed_event_list * Fixed docker-compose.yaml * Fix: Correct assertion in test_basic:_allowed_event_list * Add unit tests for MariadbStartEncryptionEvent class * Fix:find file from current directroy * Fix: find the file path * Rename StartEncryptionEvent to MariadbStartEncryptionEvent * add description for MariadbStartEncruptionEvent * fix description for MariadbStartEncryptionEvent --------- Co-authored-by: Pilmo <pilmokim99@gmail.com> Co-authored-by: BeautterLife <pgh9801@gmail.com>
- Loading branch information
1 parent
986bf5c
commit 62a009c
Showing
7 changed files
with
106 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[client-server] | ||
# Port or socket location where to connect | ||
# port = 3306 | ||
socket = /run/mysqld/mysqld.sock | ||
|
||
# Import all .cnf files from configuration directory | ||
|
||
!includedir /etc/mysql/mariadb.conf.d/ | ||
!includedir /etc/mysql/conf.d/ | ||
|
||
|
||
[mariadb] | ||
plugin_load_add = file_key_management | ||
# Key files that are not encrypted | ||
loose_file_key_management_filename = /opt/key_file/no_encryption_key.key | ||
|
||
# Encrypted key file | ||
# loose_file_key_management_filename=/opt/key_file/keyfile.enc | ||
# loose_file_key_management_filekey=FILE:/opt/key_file/no_encryption_key.key | ||
# file_key_management_encryption_algorithm=aes_ctr | ||
|
||
# Set encrypt_binlog | ||
encrypt_binlog=ON |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1;dda0ccb18a28b0b4c2448b5f0217a134 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters