From 607400b828869b8beb35c49b06ffdec3d56abcaf Mon Sep 17 00:00:00 2001 From: Guillaume28 <gbaldo@centreon.com> Date: Tue, 6 Mar 2018 14:49:42 +0100 Subject: [PATCH] fix(doc): Add Launch services --- doc/en/installation/from_packages.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/doc/en/installation/from_packages.rst b/doc/en/installation/from_packages.rst index 524f49df56..50671779d7 100644 --- a/doc/en/installation/from_packages.rst +++ b/doc/en/installation/from_packages.rst @@ -120,6 +120,28 @@ Setting this option into /etc/my.cnf will NOT work. # systemctl daemon-reload # service mysql restart +Launch services during the system startup +----------------------------------------- + +Enable the automatically start of services during the system startup. + +Execute these commands on central server. + + **CentOS v6** :: + + # chkconfig httpd on + # chkconfig snmpd on + # chkconfig mysql on + +* **CentOS v7** :: + + # systemctl enable httpd.service + # systemctl enable snmpd.service + # systemctl enable mysql.service + +.. note:: + If MySQL database is on a dedicated server, execute the enable command of mysql on DB server. + Conclude installation --------------------- -- GitLab