I have a JBoss Application server on which i deployed a primefaces app. I would like to give the user an address like:
"username.mysite.com"
"jondoe.mysite.com"
"user2.mysite.com"
and username would be its account. So he juste would have to put his password and not username. Is that possible?
Yes, it's possible. You can read on mapping subdomains on this thread, after that is in place it's just about asking a password and doing the auth based on that.
Related
0
I have just migrate magento code from 2.2.5 to 2.4.3-p1 to a different server and enviroment. Parent domain and Sub-domain are hosted on cloudflare. As xyz.com and test.xyz.com.
I am not able to login to frontenad backend admin portal. Even after using correct credentials.
Action already taken: update core_config_data table in db as changed cookie domain value to .test.xyz.com , test.xyz.com , NULL , blank. Nothing is working . Pls help.
Delete cookies and cache from browser and magento. For Session storage i am using AWS Elast-cache Redis.
Might want to create a new user with new password. Magento sometimes resets the password and you can't unlock the user and have to create a new one....
try to reboot your server and flush cache.
it might be 'Invalid Form Key. Please refresh the page' error but didn't show message.
I am wondering how to set the name for a client service account in Keycloak. At the moment it defaults to 'service-account-{client_id}', I would like to change that.
How can I do it? Is it not possible?
Thanks bunches
My target site needs AD auth to browse and use the admin portal. All is fine there. This means syncing to this server via username and password authentication doesn't work. Does this mean i need to enable x.509 authentication?
If you mean using the Staging Module, the staging module's "Username and password" really is not linked to the actual CMS Users. You can put whatever Username and Password on the Destination server, and connect to it from the Source.
x.509 is also fine.
Tell me if you aren't talking about the Staging Module though.
You may need to do 1 of 2 things:
Enable mixed mode authentication. Yes the overall authentication doesn't need to use a physical cms_user user but since you have AD Authentication enabled, anytime another user or service tries to access a system page it may require them to log in.
Create a web.config location node in your /CMSPages/Staging/web.config file that excludes anyone or everyone to access a the SyncServer.asmx page within there.
Otherwise configure the x.509 certificate setup.
When I bind SQL Database service to an application I can see credentials from application panel. But in case I've created a service and would like to work with it before I'm binding to any application, is it possible? I haven't find a way to see credentials, only internal tools to work with database.
Thank you.
Once you provision a new SQL Database instance, you need to enter the service details page in bluemix, find the 'Launch' button to go to the service page which will open up separately. On the service page go to Set up `-->` Connect Applications `-- >` Connection settings. You will get all the connection details except the username and password.
If you are not able to resolve the username and password then you have got two alternatives :-
1. Create a dummy application, bind it to your SQL Database, get the credentials from VCAP_SERVICES, and you can use them externally.
2. If you are looking for something only on `DB2` then you have another alternative called `DashDB` available in Bluemix. Here the settings are well defined, credentials are clearly available and will work even without binding the service to an application.
Hope this helps you. Thanks.
According to https://docs.wso2.org/display/IS460/Enabling+IWA+in+WSO2+Identity+Server IS seems to be configured to use WAFFLE which can be used only on Windows.
Did anyone have a chance to successfully install using http://spnego.sourceforge.net/ framework?
It would be appreciated to not limit the environment to Windows only.
If you use Tomcat, you can simply use my library: http://tomcatspnegoad.sourceforge.net/
We have managed to create a custom authenticator where
the authenticator redirects user to a page hosted in Tomcat (Custom logon page
the logon page doesn't display any logon form, but using the Tomcat SPNEGO user is authenticated with SPNEGO / Kerberos and a JWT ticket is posted back to the authenticator (commonAuthId) instead of username and password
the authenticator assumes identity of the user (set the username in the authentication context)
This is de facto a custom claim authentication, do not forget to sign / validate the posted ticket.