-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix linting issue in firewall class * Accommodate upstream ordering changes ::mysql::server::config is now before install, so a bunch of things needed to be moved around to prevent dependency cycles. In addition, since galera generally won't start without being bootstrapped, debians require some additional effort to have the default config applied when the package installs (and starts the service by default) but the real config applied when the service is started by the module.
- Loading branch information
1 parent
6c43cbc
commit a9c6bce
Showing
6 changed files
with
112 additions
and
15 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
[client] | ||
port = 3306 | ||
socket = /var/run/mysqld/mysqld.sock | ||
|
||
|
||
[mysqld_safe] | ||
socket = /var/run/mysqld/mysqld.sock | ||
nice = 0 | ||
|
||
[mysqld] | ||
user = mysql | ||
pid-file = /var/run/mysqld/mysqld.pid | ||
socket = /var/run/mysqld/mysqld.sock | ||
port = 3306 | ||
basedir = /usr | ||
datadir = /var/lib/mysql | ||
tmpdir = /tmp | ||
lc_messages_dir = /usr/share/mysql | ||
lc_messages = en_US | ||
skip-external-locking | ||
bind-address = 127.0.0.1 | ||
max_connections = 100 | ||
connect_timeout = 5 | ||
wait_timeout = 600 | ||
max_allowed_packet = 16M | ||
thread_cache_size = 128 | ||
sort_buffer_size = 4M | ||
bulk_insert_buffer_size = 16M | ||
tmp_table_size = 32M | ||
max_heap_table_size = 32M | ||
myisam_recover = BACKUP | ||
key_buffer_size = 128M | ||
table_open_cache = 400 | ||
myisam_sort_buffer_size = 512M | ||
concurrent_insert = 2 | ||
read_buffer_size = 2M | ||
read_rnd_buffer_size = 1M | ||
query_cache_limit = 128K | ||
query_cache_size = 64M | ||
log_warnings = 2 | ||
slow_query_log_file = /var/log/mysql/mariadb-slow.log | ||
long_query_time = 10 | ||
log_slow_verbosity = query_plan | ||
|
||
log_bin = /var/log/mysql/mariadb-bin | ||
log_bin_index = /var/log/mysql/mariadb-bin.index | ||
expire_logs_days = 10 | ||
max_binlog_size = 100M | ||
default_storage_engine = InnoDB | ||
innodb_buffer_pool_size = 256M | ||
innodb_log_buffer_size = 8M | ||
innodb_file_per_table = 1 | ||
innodb_open_files = 400 | ||
innodb_io_capacity = 400 | ||
innodb_flush_method = O_DIRECT | ||
|
||
|
||
|
||
[mysqldump] | ||
quick | ||
quote-names | ||
max_allowed_packet = 16M | ||
|
||
[mysql] | ||
|
||
[isamchk] | ||
key_buffer = 16M | ||
|
||
!includedir /etc/mysql/conf.d/ |