Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mariadb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
webarch
mariadb
Commits
2bec4a08
Commit
2bec4a08
authored
3 years ago
by
Chris Croome
Browse files
Options
Downloads
Patches
Plain Diff
Fix
#6
max_open_files 96132
parent
e638d314
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#19938
passed
3 years ago
Stage: lint
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
defaults/main.yml
+1
-1
1 addition, 1 deletion
defaults/main.yml
templates/mariadb.conf.j2
+4
-4
4 additions, 4 deletions
templates/mariadb.conf.j2
with
5 additions
and
5 deletions
defaults/main.yml
+
1
−
1
View file @
2bec4a08
...
...
@@ -7,7 +7,7 @@ mariadb_systemd_private_tmp: true
# Performance settings
mariadb_join_buffer_size
:
256K
mariadb_open_files_limit
:
16364
mariadb_open_files_limit
:
96132
mariadb_table_open_cache
:
4000
mariadb_tmp_table_size
:
32M
mariadb_max_allowed_packet
:
64M
...
...
This diff is collapsed.
Click to expand it.
templates/mariadb.conf.j2
+
4
−
4
View file @
2bec4a08
# {{ ansible_managed }}
[Service]
NoNewPrivileges
=
{{ mariadb_systemd_no_new_privileges |
default('false')
}}
PrivateNetwork
=
{{ mariadb_systemd_private_network |
default('false')
}}
PrivateTmp
=
{{ mariadb_systemd_private_tmp |
default('false')
}}
LimitNOFILE
=
{{ mariadb_open_files_limit
| default('16364')
}}
NoNewPrivileges
=
{{ mariadb_systemd_no_new_privileges |
lower
}}
PrivateNetwork
=
{{ mariadb_systemd_private_network |
lower
}}
PrivateTmp
=
{{ mariadb_systemd_private_tmp |
lower
}}
LimitNOFILE
=
{{ mariadb_open_files_limit }}
# vim: set ft=systemd:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment