Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
e6f6afde
You need to sign in or sign up before continuing.
Commit
e6f6afde
authored
Mar 20, 2004
by
bugreport%peshkin.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 228423: Document adjustment of MySQL 4GB default table size limit
r=kiko, a=justdave
parent
d9bcdba2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
installation.xml
docs/xml/installation.xml
+18
-1
No files found.
docs/xml/installation.xml
View file @
e6f6afde
<!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
<!-- $Id: installation.xml,v 1.6
4 2004/03/07 01:24:12 jocuri%softhome
.net Exp $ -->
<!-- $Id: installation.xml,v 1.6
5 2004/03/20 05:51:43 bugreport%peshkin
.net Exp $ -->
<chapter
id=
"installing-bugzilla"
>
<title>
Installing Bugzilla
</title>
...
...
@@ -608,6 +608,23 @@
# Allow packets up to 1M
set-variable = max_allowed_packet=1M
</screen>
</section>
<section>
<title>
Permit attachments table to grow beyond 4GB
</title>
<para>
By default, MySQL will limit the size of a table
to 4GB. This limit is present even if the underlying filesystem
has no such limit or if you are using RAID. To set a higher
limit, follow these instructions.
</para>
<para>
Run the
<filename>
MySQL
</filename>
command-line client and
enter:
</para>
<screen>
<prompt>
mysql
>
</prompt>
ALTER TABLE attachments
AVG_ROW_LENGTH=1000000, MAX_ROWS=20000;
</screen>
<para>
The above command will change the limit to 20GB. Mysql will have
to make a temporary copy of your entire table to do this. Ideally,
you should do this when your attachments table is still small.
</para>
</section>
<section
id=
"install-setupdatabase-adduser"
>
<title>
Add a user to MySQL
</title>
...
...
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