diff options
Diffstat (limited to 'mysqld.service')
-rw-r--r-- | mysqld.service | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysqld.service b/mysqld.service index b3bc486..b7fa095 100644 --- a/mysqld.service +++ b/mysqld.service @@ -1,3 +1,19 @@ +# It's not recommended to modify this file in-place, because it will be +# overwritten during package upgrades. If you want to customize, the +# best way is to create a file "/etc/systemd/system/mysqld.service", +# containing +# .include /lib/systemd/system/mysqld.service +# ...make your changes here... +# For more info about custom unit files, see +# http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F + +# For example, if you want to increase mysql's open-files-limit to 10000, +# you need to increase systemd's LimitNOFILE setting, so create a file named +# "/etc/systemd/system/mysqld.service" containing: +# .include /lib/systemd/system/mysqld.service +# [Service] +# LimitNOFILE=10000 + [Unit] Description=MySQL database server After=syslog.target |