Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
37d1d86d
Commit
37d1d86d
authored
Nov 27, 2006
by
tsmith/tim@siva.hindu.god
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
raise max_connections default to avoid conflicts with apache max_childs settings (Bug #23883)
parent
7c7b1ede
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
sql/mysqld.cc
sql/mysqld.cc
+3
-1
No files found.
sql/mysqld.cc
View file @
37d1d86d
...
...
@@ -5943,9 +5943,11 @@ The minimum value for this variable is 4096.",
"If there is more than this number of interrupted connections from a host this host will be blocked from further connections."
,
(
gptr
*
)
&
max_connect_errors
,
(
gptr
*
)
&
max_connect_errors
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
MAX_CONNECT_ERRORS
,
1
,
~
0L
,
0
,
1
,
0
},
// Default max_connections of 151 is larger than Apache's default max
// children, to avoid "too many connections" error in a common setup
{
"max_connections"
,
OPT_MAX_CONNECTIONS
,
"The number of simultaneous clients allowed."
,
(
gptr
*
)
&
max_connections
,
(
gptr
*
)
&
max_connections
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
1
00
,
1
,
16384
,
0
,
1
,
(
gptr
*
)
&
max_connections
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
1
51
,
1
,
16384
,
0
,
1
,
0
},
{
"max_delayed_threads"
,
OPT_MAX_DELAYED_THREADS
,
"Don't start more than this number of threads to handle INSERT DELAYED statements. If set to zero, which means INSERT DELAYED is not used."
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment