-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting the infamous (98: Address already in use) error #3063
Comments
Can you try something more like this?
|
I added this change, and now it's not mapping my user. I'm getting this back:
FYI, I'm running |
The linux user is |
The Linux user is I believe the username should just be the name without the
Do you think it might be related to something other than username mapping? I'd be happy to clean up and post any logs as well, if that helps. |
Sorry for the spam, thought this could be helpful. I ran
|
Got it - I see that regex should work. Lua 5.3.6 Copyright (C) 1994-2020 Lua.org, PUC-Rio
> string.match('[email protected]', '([^@]+)')
jeff So from what I can recall from the other topics (infamous is a bit right!) there's an issue somewhere in your SSSD stack. You're able to boot the PUN, but somehow, you're unable to recognize that the file belongs to the That siad - this line is concerning
It should read
that's not spam at all - that's a real clue! You have 2 different usernames mapping to the same user?!
What's the output of Mappings need to be unique - either |
Looking at this again - you should not be able to do this at all. What version of OnDemand are you running?
ondemand/nginx_stage/lib/nginx_stage/user.rb Lines 40 to 50 in 04ee5fb
|
I'm running Your concern is in its place. Both I'm not running SELinux. Could that be the reason? I can go ahead and add SELinux if necessary. Also, you're right in that it's supposed to read
I'm not sure why it's mapping to the full email. |
That's why you don't see that message! Well I think that message is directly applicable to you and if you were running 2.0 or higher you'd see it. I would try to set SSSD's config
We host on yum.osc.edu I'd be interested to know if you installed this package from some other yum repo.
No I think your issue is definitly the same as the issue referenced in the error message.
Let me check the documentation for the same. What I said there in lua code is 2.0+ and
|
It worked! Thank you, Jeff! I was using
I had to get it through my institution's internal repo satellite. I believe it is slightly out of date. Is there any documentation for unpacking/installing tarballs? |
Completely unrelated error, and I can move it to another issue if necessary. I'm trying to spawn a shell now, and I'm getting this error:
Seems like a whole can of worms to |
That is an extremely old version of nodejs. I want to say 1.8 shipped with node 12, but would have to confirm - the RPM should have resolved the correct nodejs.
No - IDK how satellites work. Seems like it should just mirror yum.osc.edu or you could upload RPMs manually I guess? |
Satellite , at least modern versions like 6.x, can sync any yum repo. OSC Satellite syncs both RedHat repos as well as EPEL, but if we wanted we could add other repos like OnDemand, etc. In Satellite you add a new product and point at the desired path for repo that contains the |
I feel like this ticket is resolved (at least the initial issue), so i'm going to close this. @walidabualafia if you continue to have issues, just open more issues here or on discourse. |
Hi, folks,
I am currently in the works of deploying an OnDemand instance at my institution. I got OnDemand installed on a VM host, and configured authentication with our Azure AD. Now, whenever I browse the webpage, AD prompts my credentials, I sign in, auth succeeds, and then I see this:
Now I am certain that the issue is with the name mapping, but I'm struggling to find the fix. I have tried several approaches from Discourse and issues here in GitHub, but could not find anything to fix my issue.
I turned on Lua debug to see what the username being mapped is, and I got the following:
I tried stripping the username using regex in
ood_portal.yml
using variableuser_map_match = '([^@]+)'
, but with no success.Any help would be greatly appreciated. :)
Cheers,
Walid
The text was updated successfully, but these errors were encountered: