Search found 379 matches

by bbahn
Wed Jan 21, 2026 10:28 am
Forum: Nagios XI
Topic: Error missing table SSO mappings after 2026R1.1
Replies: 8
Views: 13557

Re: Error missing table SSO mappings after 2026R1.1

If you update your xi_users table to InnoDB, you should be able to run the schema without issue. You can accomplish this with

Code: Select all

ALTER TABLE xi_users ENGINE = InnoDB;
Nagios XI 2026R1.1.1 will have a script that will update the table engines for the nagiosxi database and will resolve this issue.
by bbahn
Tue Jan 13, 2026 4:22 pm
Forum: Nagios XI
Topic: Azure SSO Issue Adding Users
Replies: 4
Views: 7180

Re: Azure SSO Issue Adding Users

There seems to be an issue with SSO's individual user registration that arose from a merge conflict not being resolved properly. We have a partial fix completed internally and will have this issue resolved by 2026R1.1.2.
by bbahn
Tue Dec 30, 2025 4:00 pm
Forum: Nagios XI
Topic: Error missing table SSO mappings after 2026R1.1
Replies: 8
Views: 13557

Re: Error missing table SSO mappings after 2026R1.1

@xdatanet, If you're still encountering this issue, could you please show the results of this SQL command: SELECT ENGINE FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'nagiosxi'; This will tell us whether your tables are using the InnoDB engine, which became the default around 2010 and is requ...
by bbahn
Tue Dec 30, 2025 11:18 am
Forum: Nagios XI
Topic: NagiosXI SSO Import/Manage Users issue
Replies: 29
Views: 85417

Re: NagiosXI SSO Import/Manage Users issue

@wneville, Is there an open thread for enhancements for this integration? I would love to be able to add users without Nagios Core restarting every time I click "Configure User" You can post things like that here on the forum and request that we make an issue for them and we'll file those ...
by bbahn
Mon Dec 29, 2025 12:01 pm
Forum: Nagios XI
Topic: SSO Login Does Not Update “Last Login” Timestamp
Replies: 1
Views: 3726

Re: SSO Login Does Not Update “Last Login” Timestamp

Hello @mistyxray, What version of Nagios XI are you using? There was an issue where the login time wasn't being updated properly when logged in via SSO and a fix was implemented. The fix may have gotten overwritten by a merge conflict or have been on a different branch, so I want to verify whether y...
by bbahn
Tue Dec 23, 2025 11:01 am
Forum: Nagios XI
Topic: NagiosXI SSO Import/Manage Users issue
Replies: 29
Views: 85417

Re: NagiosXI SSO Import/Manage Users issue

Hi @wneville,

Can you post the contents of /usr/local/nagiosxi/var/components/sso_integration.log? Are you sure you were configuring them to new users?

You can add multiple redirect URIs to the same app registration under the authentication tab to allow multiple XIs to use the same registration.
by bbahn
Thu Dec 18, 2025 12:16 pm
Forum: Nagios XI
Topic: Error missing table SSO mappings after 2026R1.1
Replies: 8
Views: 13557

Re: Error missing table SSO mappings after 2026R1.1

Your upgrade clearly failed given the error.

You can try importing the sql schema before upgrading to see what's going on there. What OS are you on? Have you made any modifications to the database?
by bbahn
Thu Dec 18, 2025 10:23 am
Forum: Nagios XI
Topic: Error missing table SSO mappings after 2026R1.1
Replies: 8
Views: 13557

Re: Error missing table SSO mappings after 2026R1.1

Hello @xdatanet, Are you sure your upgrade went through properly? The upgrade process imports the sql schema in nagiosxi/nagiosxi-db/mysql/schema_80002.sql. You can import this into the nagiosxi table manually with mysql -u <root/nagiosxi> -p nagiosxi < ...../path/to/schema_80002.sql , but I suspect...
by bbahn
Wed Dec 17, 2025 5:17 pm
Forum: Nagios XI
Topic: Mod Gearman GUI problems after upgrade to 2026R1.1
Replies: 4
Views: 5372

Re: Mod Gearman GUI problems after upgrade to 2026R1.1

Hello @occ,

What version of XI did you upgrade from?
by bbahn
Wed Dec 10, 2025 2:17 pm
Forum: Open Source Nagios Projects
Topic: events correlation
Replies: 1
Views: 21560

Re: events correlation

Hello @wolfgang, You CAN actually make it so that you only receive one alert when your router is down instead of everything. By setting parent/child relationships, if a parent host goes down, the child nodes will not have notifications sent. You CAN have a script run on alert with the event handlers...