Skip to content

Commit 7d0315c

Browse files
committedFeb 10, 2025
fix
1 parent 42cdc07 commit 7d0315c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
 

‎config/my.cnf

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[mysqld]
2+
# skip-networking
3+
datadir=/var/lib/mysql
4+
log-error=/var/log/mariadb/mariadb.log
5+
6+
# Galera-related settings
7+
[galera]
8+
# Mandatory settings
9+
#wsrep_on=ON
10+
#wsrep_provider=
11+
#wsrep_cluster_address=
12+
#binlog_format=row
13+
#default_storage_engine=InnoDB
14+
#innodb_autoinc_lock_mode=2
15+
#
16+
# Allow server to accept connections on all interfaces.
17+
#
18+
# bind-address=0.0.0.0
19+
#
20+
# Optional setting
21+
#wsrep_slave_threads=1
22+
#innodb_flush_log_at_trx_commit=0
23+
24+
# this is only for embedded server
25+
[embedded]
26+
27+
# This group is only read by MariaDB servers, not by MySQL.
28+
# If you use the same .cnf file for MySQL and MariaDB,
29+
# you can put MariaDB-only options here
30+
[mariadb]
31+
32+
# This group is only read by MariaDB-10.5 servers.
33+
# If you use the same .cnf file for MariaDB of different versions,
34+
# use this group for options that older servers don't understand
35+
[mariadb-10.5]

0 commit comments

Comments
 (0)
Please sign in to comment.