Ad Widget

Collapse

Restarting the Zabbix Management server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pmurtey
    Member
    • Mar 2020
    • 91

    #1

    Restarting the Zabbix Management server

    Hi All,
    What is the recommended way to restart the Zabbix Management server, without having to reboot the entire system?

    TIA
  • RainCap
    Junior Member
    • Nov 2022
    • 4

    #2
    Normally /etc/init.d/zabbix-server restart , your system may differ but this is what works on Debian and CentOS

    Comment

    • pmurtey
      Member
      • Mar 2020
      • 91

      #3
      HI RC, So this will restart everything? The server, the database , and the web server, all in one shot?

      Comment

      • RainCap
        Junior Member
        • Nov 2022
        • 4

        #4
        No, just a zabbix server processes
        do you need to restart everything?
        Here is an example for mariadb database, zabbix and apache web server , again, depending on the OS:
        /etc/init.d/zabbix-server restart && /etc/init.d/mariadb restart && /etc/init.d apache2 restart

        Or , for mysql , zabbix and nginx

        /etc/init.d/zabbix-server restart && /etc/init.d/mysql restart && /etc/init.d nginx restart

        You can build your own string, hope this helps
        Anton

        Comment

        Working...