Confluence is part of a larger system. Users already login to the Apache Http WEB server to authenticate and see specific static pages. Is there a way I can propagate that identity to Confluence, so users don't need to login again?
Start with https://bitbucket.org/jaysee00/example-confluence-sso-authenticator/.
IIRC that sample code gets the user from a header request. It's a very minor change to get it to read the authenticated user name from the request.
We do it exactly the way you describe in your bullets, works fine. We only use mod_jk for the login page, but that's up to you.
The link is dead.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Wissel,
Mybe this plugin can help you to achieve what you need:
https://marketplace.atlassian.com/plugins/shibauth.confluence.authentication.shibboleth
Could you please check it and let me know if it helps?
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Stephan,
I think that Apache authentication can not be inherited by Confluence, as apache works only as a Proxy for Confluence and does not do any kind of operation in it.
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Celso,
I think differently. Here is theory how it could work:
So it boils down to someone writing a sample (or does one exist already?) how to use the Tomcat user in Confluence. Doesn't sound like a bad usecase.
Then all variations of authentication (2 factor, OpenID and whathaveyou) can be delegated to either Tomcat or Apache.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Stephan!
You can access Confluence using the variables os_username and os_password directly in the URL to login into Confluence.
Example:
http://localhost:8888/dashboard.action?os_username=admin&os_password=12345
When admin is the username and 12345 the password.
So you may use the username and password typed by the user - using Apache Authenticator - and with .htaccess file you can redirect the user to the proper URL.
Hope it helps! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Almost :-)
I do not have access to the authentication mechanism (that's a blackbox plug-in and it doesn't use a password), so the only thing I get is a user name. What would be my options?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.