-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move MariaDB configuration guide section to the top. #1913
Move MariaDB configuration guide section to the top. #1913
Conversation
06c501b
to
df44dcd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to move the section about the database configuration up to the top or do we still want it where it currently is in configuration.md
? Would it be beneficial to have this entire part towards the top?
[mysqld]
sql_mode = ''
max_allowed_packet = 1G
group_concat_max_len = 16M
innodb_stats_on_metadata = off
innodb_file_per_table = On
6aa160c
to
c995af7
Compare
sql_mode
setting earlier in configuration guide.8526ff6
to
a29c001
Compare
server system variable must be changed to 16MB from its default value of 1024 | ||
bytes. | ||
|
||
The `max_allowed_packet` setting must be set to at least 16MB. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this supposed to be the same as max_allowed_packet = 1G
below? Or is 16MB a minimum with the actual set to 1GB?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, it's been that way since #1157
a29c001
to
d5a01b1
Compare
Description
This PR updates https://open.xdmod.org/configuration.html to move the MariaDB section to the top since it needs to be running before running
xdmod-setup
. This is a common gotcha about which we have gotten a number of tickets.Checklist: