mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
97b4686e2c
The new parameter is called --config The config file is copied to the data directory as my.ini, and possibly modified. Bootstrap will now use my.ini to create tables. In case of non-standard directory/file placements, this will ensure correct permissions for the service user. mysql_install_db_win test is extended to test --config with non-trivial config file.
18 lines
506 B
INI
18 lines
506 B
INI
[mysqld]
|
|
long_query_time=15.000000
|
|
#slow_query_log_file=l:/errorlog/mariadb.slow.log
|
|
slow_query_log_file=BASEDIR/data/slow_query_log_01.log
|
|
datadir=BASEDIR/data/
|
|
server-id=1
|
|
port=3306
|
|
#tmpdir=C:/mysql_tmpdir
|
|
tmpdir=BASEDIR/temp
|
|
innodb_data_file_path=ibdata1:10M;ibdata2:10M:autoextend
|
|
innodb_log_group_home_dir=BASEDIR/data
|
|
skip-name-resolve
|
|
|
|
#*********************************************************
|
|
# performance_schema
|
|
#*********************************************************
|
|
performance_schema=OFF
|
|
|