MID server auto upgrade issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2022 07:52 AM
Hello all,
During servicenow upgrades MID server failed to upgrade stating "Interactive authentication required" error because of missing permission(s)." in the wrapper log. Concerned with this, is my query below
In order to access MID server host from servicenow mid_server role is necessary similarly is there any necessary role that a user needs to have at the host to connect with servicenow.
Thanks in advance
- Labels:
-
MID Server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2023 08:36 PM
have the same problem 😥
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2023 08:35 PM
have the same problem 😥
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2023 05:55 AM
We discovered that the application was trying to start before our LDAP connections were established and systemd wasn't able to find our application user. We ended up putting the user in the /etc/passwd file to get around this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2024 01:51 AM
We have created a PolicyKit Rule to mitigate this error. The mid server user is given access to stop and start the systemctl service:
cd /etc/polkit-1/rules.d
vim 10-service-auth.rules
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.systemd1.manage-units" &&
subject.user == "servicenow") {
var serviceName = action.lookup("unit");
if (serviceName.indexOf("mid") == 0) {
return polkit.Result.YES;
}
}
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 10:31 PM
see this KB