blob: e33adefc8bccf61e3617e49041d1263b5b17a695 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001
2config mysqld 'general'
3 # Unless enable, MariaDB will not start without this
4 option enabled '0'
5 # User to run MariaDB as
6 option user 'mariadb'
7 # Group to run MariaDB
8 option group 'mariadb'
9 # If there is now database, create an empty one automatically
10 option init '1'
11 # If upgrading old database, run mysql_upgrade during restart
12 option upgrade '1'
13