Can I use an Active Directory to manage the users and groups in Iguazio platform? - mlops

How can I use an active directory to manage the users and groups in the Iguazio platform? I can't find the location to configure Active Directory.

The Active Directory configuration is under the IDP tab (Identity Provider). Please follow these instructions
https://www.iguazio.com/docs/latest-release/users-and-security/users/#idp
When you click on IDP you will see the option to configure Active Directory

Related

Bindings already exsist for a different website

In details on IIS in windows server.
IIS tree structure:
Default Web Site * Parent Root folder C:\inetpub\wwwroot\Applications\Default Web Site
Employee * Sub App Root Folder C:\inetpub\ExternalEmployee
Sample * Sub App Root Fodler C:\inetpub\TEST_Project
Goal:
I want to deploy my application in sub application folder "C:\inetpub\ExternalEmployee" but not in parent root folder. So when I browse www.contoso.com/sample I can see img2.png
my default site looks like.
Current Issues:
Bindings already exsist for a different website.
Config type: IIS website
IIS web App MAnage:
Web site named: Default web site
Physical path: %SystemDrive%\inetpub\Test_Project
Hope this helps in solving my issue.
Thanks.
If you were deploying your app to a deployment group in azure devops release pipeline. You can add IIS web app manage task to manage your web's Physical path and bindings before IIS web app deploy task.
Please check below example, if you want to deploy the application in sub application folder C:\inetpub\ExternalEmployee. You can set Physical path to C:\inetpub\ExternalEmployee.
And you can click the 3dots of the Add binding fields to set the binding.
Bindings already exsist for a different website.
To fix this error you can either set a new binding for your web app, or you can try to find out which website has taken the binding on the windows server and remove the binding using below script.
Get-WebBinding -Port 80 -Name "website name" | Remove-WebBinding
Hope above helps!

Wildfly: Management user vs Application user

I downloaded Wildfly (wildfly-13.0.0.Final) and I want to configure it. I start standalone.bat in the bin folder of JBOSS_HOME directory (I use Windows platform).
I go to management console: localhost:8080 -> Administration Console. I see this
Your WildFly Application Server is running.
However you have not yet added any users to be able to access the admin console.
To add a new user execute the add-user.bat script within the bin folder of your WildFly installation and enter the requested information.
I run add-user.bat and it asks me what kind of user I would like to add.
I need a user to have permissions to deploy, redeploy applications. For example, for Apache Tomcat I can consifure tomcat-users.xml file and add users there (https://stackoverflow.com/a/1327730/4587961), so when I log into console as that user, I can deploy applications.
You need to add a Management user with the add-user.bat, whose credentials you will be able to log in the web admin with.
You could direclty add the user to the mgmt-users.properties file in the configuration directory of your standalone or domain, but the entry must be of the form <username>:DIGEST-MD5(<username>:ManagementRealm:<password>), which the add-user.bat script will handle for you.
You don't need any particular role unless you set up RoleBasedAccessControl.
Applicative users are used by applications with frameworks such as JAAS and are interfaced through the "default" security-domain, which refers to the ApplicationRealm containing those users.
As I read
https://docs.jboss.org/author/display/WFLY10/EJB+invocations+from+a+remote+server+instance
https://developer.jboss.org/thread/240892
Management user is used to enter the web console. Here you can deploy app, make settings, add resources (JPA config for example). Application users do not have access to the web console. They can be used for example to authenticate services. For example to invoke remove EJB bean, you need application user credentials to access the remove server.

How to access Jboss Manager/Admin portal

I am new to jboss, what is the url and configuration settings you need to have to access Jboss's Manager/Admin portal
It depends on which version of jboss you are using.
for example, on JBOSS 5, you have to go to
http://localhost:8080/admin-console
Add the user at -JBOSS_HOME-\server\ -Server_Name-\conf\props\jmx-console-users.properties
On JBOSS version >= 6:
http://localhost:9990
Add management user with add-user.bat located in bin folder
The url to access the JBoss Management Console is usually http://your_host:9990. Be careful that the console works only on localhost unless you edit your standalone.xml.
Before accessing the console you need to create a management user with the console script add-user.sh (or .bat) in your bin directory.
Hope this helps!
See this for more information: https://docs.jboss.org/author/display/WFLY10/Admin+Guide#AdminGuide-Accessingthewebconsole

What Permissions does a user need to upload content into AEM Mobile Cloud service from AEM

I have setup a package that I built on an AEM author instance running on my local machine. I have it connecting to the AEM Mobile on demand cloud service.
When I have my package uploaded to a hosted AEM author instance, where I am not able to log in as admin. When I load the mobile project I see an error that the cloud config path does not exist. And I also don't see the 'Upload Shared Resources' button and can't upload articles.
What paths and permissions on those paths does my user need to fix this?
I was able to track down the paths and the permissions needed on those paths.
For the cloud config does not exist error the user needs
read access to the cloud config path: /etc/cloudservices/dps2015
In order to upload the user needs
read access to /etc/contentsync
and
read, write, create, delete access to /var/contentsync
and
read access to /var

JBPM-Console-NG 6.1.0 User Not Authorized

I downloaded the jbpm-console-ng from github and built it. I then went to the distribution wars folder and done the next build. I then took the distribution war for as-7 and deployed it. Next i created my own user and added admin, manager, user, IT etc to its roles.
When I go to log in I can't because I'm not authorized? The same thing happens with the default users e.g. salaboy
What can I do to fix this?
Thanks
Did you follow the steps in the documentation to create the users and add the roles?
Are you using jboss as 7.1.1?