Jobqueue ist empty but the interface reports not populated changes

Discussion in 'ISPConfig 3 Priority Support' started by cmks, Apr 10, 2024.

  1. cmks

    cmks Member HowtoForge Supporter

    Hi,
    we are running a multi server setup, version 3.2.11p1.

    The red dot says:
    The following changes are not yet populated to all servers:
    • datalog_status_i_directive_snippets: 1

    But: Monitor -> Jobqueue is empty

    The ISPconfig master server reports no problems:
    Code:
    # /usr/local/ispconfig/server/server.sh
    10.04.2024-14:57 - DEBUG [plugins.inc:155] - Calling function 'check_phpini_changes' from plugin 'webserver_plugin' raised by action 'server_plugins_loaded'.
    10.04.2024-14:57 - DEBUG [server:217] - Remove Lock: /usr/local/ispconfig/server/temp/.ispconfig_lock
    finished server.php.
    
    # /usr/local/ispconfig/server/server.sh

    I don't know how to further debug this issue, any help is welcome. I also don't know how to see which target server is not fully populated yet.
    I don't want to switch every client server to debug mode and check them individually.
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    You can try to find it with this sql query on the master:

    Code:
    SELECT COUNT( * ) AS cnt, sys_datalog.server_id
                    FROM sys_datalog, server
                    WHERE (server.server_id = sys_datalog.server_id or sys_datalog.server_id = 0) AND sys_datalog.datalog_id > server.updated
     
    Th0m likes this.

Share This Page