Page 1 of 1
Mod Gearman GUI problems after upgrade to 2026R1.1
Posted: Wed Dec 17, 2025 4:39 am
by occ
after updating nagiosxi, mod gearman it still works but the changes made by the GUI have no effect, using the "sync" button does write logs to the/usr/local/nagiosxi/var/nmg.log file but stops on "TASK [Check if Oracle plugin file exists locally] ******************************".
Re: Mod Gearman GUI problems after upgrade to 2026R1.1
Posted: Wed Dec 17, 2025 5:17 pm
by bbahn
Hello @occ,
What version of XI did you upgrade from?
Re: Mod Gearman GUI problems after upgrade to 2026R1.1
Posted: Wed Dec 17, 2025 5:19 pm
by gwesterman
Can you provide the full output to nmg.log when you run sync?
Try adding become: false to the ansible.builtin.stat jobs in /usr/local/nagiosxi/html/config/nmg/ansible, e.g.
Code: Select all
# Oracle config file
- name: Check if Oracle plugin file exists locally
ansible.builtin.stat:
path: /usr/local/nagiosxi/etc/configwizards/oracle/oracle
become: false
delegate_to: localhost
register: oracle_file
There's 4 of them.
Thank you!
Re: Mod Gearman GUI problems after upgrade to 2026R1.1
Posted: Wed Dec 17, 2025 11:32 pm
by deficientamend
I’ve run into the same situation before: Ansible tries to escalate privileges on the stat task and just hangs. Adding become: false to those ansible.builtin.stat jobs in /usr/local/nagiosxi/html/config/nmg/ansible cleared it up for me.
Re: Mod Gearman GUI problems after upgrade to 2026R1.1
Posted: Thu Dec 18, 2025 3:28 pm
by DoubleDoubleA
We'll have this fixed in the next XI release.
Aaron