diff options
author | Remi Collet <fedora@famillecollet.com> | 2012-02-14 19:26:38 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2012-02-14 19:26:38 +0100 |
commit | dc34413ab6bbf32bcaeaca6437534285981909c2 (patch) | |
tree | 552191503d1c4877c8d37f63403f6203c6b27958 /mysqld.service | |
parent | 88b4a0650e983b0437b0554b1799dc5c44f613c7 (diff) |
MySQL : sync with latest rawhide changes
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 |