Hi, I have created a MariaDB server in the West Europe region. I have selected version 10.3
Performance Configuration: General Purpose, 2 vCore(s), 5 GB
The server has been created using the version 10.3.23-MariaDB-log.
show global variables like '%version%';
+-----------------------------------+------------------------------------------+
| Variable_name | Value |
+-----------------------------------+------------------------------------------+
| in_predicate_conversion_threshold | 1000 |
| innodb_version | 10.3.23 |
| protocol_version | 10 |
| slave_type_conversions | |
| system_versioning_alter_history | ERROR |
| system_versioning_asof | DEFAULT |
| version | 10.3.23-MariaDB-log |
| version_comment | MariaDB Server |
| version_compile_machine | x64 |
| version_compile_os | Win64 |
| version_malloc_library | system |
| version_source_revision | 7a97b525ea6a3ff619e8d156bf11bfe5b3acf8c2 |
| version_ssl_library | YaSSL 2.4.4 |
+-----------------------------------+------------------------------------------+
The -log part is enabling the binary logs, which I need to be disabled.
show global variables like 'log_bin';
+---------------------------------+------------------------------+
| Variable_name | Value |
+---------------------------------+------------------------------+
| log_bin | ON |
+---------------------------------+------------------------------+
Is there a way to define the MINOR version or to change the server settings in order to set the log_bin to OFF?
I have tried what is suggested here including using init-connect without success (log_bin is a read-only variable). I have read in other forums that I should modify the configuration files and restart the server, but this does not seem to be an option in Azure DB for MariaDB.
Has anyone noticed/faced a similar issue?