Re: Query regarding Ignite .NET Authentication and Authorization

2023-08-18 Thread Pavel Tupitsyn
Hi Satyajit, Ignite does not provide role-based access control, only authentication. Some vendors have plugins/forks where this is available, though. Pavel On Fri, Aug 18, 2023 at 5:48 AM wrote: > Hi Pavel, > > > > We have a requirement where we are loading static da

Query regarding Ignite .NET Authentication and Authorization

2023-08-17 Thread satyajit.mandal.barclays.com via user
Hi Pavel, We have a requirement where we are loading static data into Ignite cache as SQL tables using Ignite .NET library. As per document we can enable authentication if persistence is enabled for one data region. How can we extend the security in Ignite .NET

Re: Unable to join using thick client when authentication is enabled

2021-12-11 Thread Shishkov Ilya
t; I've reproduced it for 2.11. In case of turned on authentication, thick >> clients won't connect until you enable persistence for them. Because thick >> clients have no persistence, you can use it like a workaround. Certainly, >> it looks like a bug. >> >> пт, 1

Re: Unable to join using thick client when authentication is enabled

2021-11-22 Thread Shishkov Ilya
Hi, I created a ticket about this problem: https://issues.apache.org/jira/browse/IGNITE-15969 пт, 19 нояб. 2021 г. в 22:46, Shishkov Ilya : > Hi, > I've reproduced it for 2.11. In case of turned on authentication, thick > clients won't connect until you enable persistence for them. Beca

Re: Unable to join using thick client when authentication is enabled

2021-11-19 Thread Shishkov Ilya
Hi, I've reproduced it for 2.11. In case of turned on authentication, thick clients won't connect until you enable persistence for them. Because thick clients have no persistence, you can use it like a workaround. Certainly, it looks like a bug. пт, 19 нояб. 2021 г. в 16:42, Ganguly Gundeboina

Re: Unable to join using thick client when authentication is enabled

2021-11-19 Thread Ganguly Gundeboina
queue limit is set to 0 which may lead to potential OOMEs when running cache operations in FULL_ASYNC or PRIMARY_SYNC modes due to message queues growth on sender and receiver sides. [18:03:49] Security status [authentication=on, sandbox=off, tls/ssl=off] Nov 19, 2021 6:03:50 PM

Re: Unable to join using thick client when authentication is enabled

2021-11-19 Thread Stephen Darlington
Thick clients don’t need to authenticate, but they do need to have the same authentication settings as the server nodes, i.e., set IgniteConfiguration#setAuthenticationEnabled(true). > On 19 Nov 2021, at 11:28, Ganguly Gundeboina wrote: > > Hi Pavel, > > Yes, we have enabled

Re: Unable to join using thick client when authentication is enabled

2021-11-19 Thread Ganguly Gundeboina
Hi Pavel, Yes, we have enabled authentication on server nodes only. We could provide user credentials for thin clients, so thin clients are able to connect to the cluster after setting username and password at client side. But not able to set user credentials for thik clients, So we have

Re: Unable to join using thick client when authentication is enabled

2021-11-18 Thread Pavel Tupitsyn
r > [ignoredFailureTypes=UnmodifiableSet [SYSTEM_WORKER_BLOCKED, > SYSTEM_CRITICAL_OPERATION_TIMEOUT > [14:47:53] Message queue limit is set to 0 which may lead to potential > OOMEs when running cache operations in FULL_ASYNC or PRIMARY_SYNC modes due > to message queues growth on sen

RE: Unable to join using thick client when authentication is enabled

2021-11-18 Thread Mikhail Petrov
Gangaiah, this exception means that authentication is disabled on the thick client and enabled on the cluster it was trying to connect to. Enable authentication on the thick client and the problem should be solved. -- Mikhail On 2021/11/17 17:56:13 Ganguly Gundeboina wrote: > Hi Ignit

Re: Unable to join using thick client when authentication is enabled

2021-11-18 Thread Ganguly Gundeboina
4:47:53] Message queue limit is set to 0 which may lead to potential OOMEs when running cache operations in FULL_ASYNC or PRIMARY_SYNC modes due to message queues growth on sender and receiver sides. [14:48:03] Security status [authentication=off, sandbox=off, tls/ssl=off] [14:48:05] REST protoco

Re: Unable to join using thick client when authentication is enabled

2021-11-18 Thread andrei
PM, Ganguly Gundeboina пишет: Hi Igniters, We recently started using Ignite version 2.11.0 (native persistence enabled) with authentication enabled. When am trying to connect to cluster using thick client, getting error as below. This was not there with earlier version. I have checked https

Unable to join using thick client when authentication is enabled

2021-11-17 Thread Ganguly Gundeboina
Hi Igniters, We recently started using Ignite version 2.11.0 (native persistence enabled) with authentication enabled. When am trying to connect to cluster using thick client, getting error as below. This was not there with earlier version. I have checked https://ignite.apache.org/docs/latest

Re: Not able to start second server node due to authentication failure

2019-11-13 Thread Maksim Stepachev
still throws the same Authentication Failed error (as given in my > previous post) after executing authenticateNode. > > The another thing that bothers me is that validateNode is not being invoked > when the second server node is started. I am still stuck with this issue. > > > &g

Re: Not able to start second server node due to authentication failure

2019-11-13 Thread Sankar Ramiah
it to my security context and return the same. It still throws the same Authentication Failed error (as given in my previous post) after executing authenticateNode. The another thing that bothers me is that validateNode is not being invoked when the second server node is started. I am still stuck

Re: Not able to start second server node due to authentication failure

2019-11-06 Thread Zaheer
Hi Sankar, What Andei said is correct. We need to return a security subject. I faced this problem and solved it like this : *1. Create your own SecurityPermissionSet class that implements org.apache.ignite.plugin.security.SecurityPermissionSet .* /public class TestSecurityPermissionSet

Re: Not able to start second server node due to authentication failure

2019-11-06 Thread Andrei Aleksandrov
Hi, It's correct that SecurityContext is null in your case:     SecurityContext subj = spi.nodeAuth.authenticateNode(node, cred);     if (subj == null) {         // Node has not pass authentication.         LT.warn(log, "Authentication failed [nodeId=" + node.id() +           

Not able to start second server node due to authentication failure

2019-11-06 Thread Sankar Ramiah
I have implemented custom authentication and authorization through a plugin. /public class MyPlugin implements GridSecurityProcessor, IgnitePlugin {/ Implemented authenticateNode method which bypasses authentication for server nodes and returns a security context instance. validateNode

RE: Authentication

2019-09-18 Thread Kurt Semba
Hi Andrei, thank you for the details. Kurt From: Andrei Aleksandrov Sent: Tuesday, September 17, 2019 10:50 AM To: user@ignite.apache.org Subject: Re: Authentication External Email: Use caution in opening links or attachments. Hi Kurt, Yes, you can create new users via SQL as was mentioned

Re: Authentication

2019-09-17 Thread Andrei Aleksandrov
From:*Andrei Aleksandrov *Sent:* Monday, September 16, 2019 12:13 PM *To:* user@ignite.apache.org *Subject:* Re: Authentication *External Email:*Use caution in opening links or attachments. Hi, I guess that here Ignite has some documentation gap. Advanced security out of the box will work only with

RE: Authentication

2019-09-16 Thread Kurt Semba
: Andrei Aleksandrov Sent: Monday, September 16, 2019 12:13 PM To: user@ignite.apache.org Subject: Re: Authentication External Email: Use caution in opening links or attachments. Hi, I guess that here Ignite has some documentation gap. Advanced security out of the box will work only with thin

Re: Authentication

2019-09-16 Thread Andrei Aleksandrov
Hi, I guess that here Ignite has some documentation gap. Advanced security out of the box will work only with thin connections like webconsole, ODBC/JDBC, etc. To get cluster node authentication you should add GridSecurityProcessor implementation: https://apacheignite.readme.io/docs

Authentication

2019-09-16 Thread Kurt Semba
Hi all, I used the web-console to auto-generate some code and then extended the ServerNodeCodeStartup.java class according to the documentation to enable authentication (which requires to enable persistence) like this: public static void main(String[] args) throws Exception

Re: Ignite authentication without persistence enabled?

2019-06-13 Thread Ilya Kasnacheev
Hello! You know, there's an even simpler method of authentication. Just use TLS, have a CA which only signs certificates of trusted nodes. Anyone without a certificate can't join cluster. Regards, -- Ilya Kasnacheev ср, 12 июн. 2019 г. в 11:09, Jeff Jiao : > I tried to implement the plu

Re: Ignite authentication without persistence enabled?

2019-06-12 Thread Jeff Jiao
I tried to implement the plugin but stuck at specify SecurityCredentials when Ignite node start up, I cannot find any useful information here how to specify it. But I find one Ignite user posted a doable and much easier way to implement Ignite authentication, if anyone wants to do this, you can

Re: Ignite authentication without persistence enabled?

2019-06-05 Thread Jeff Jiao
Thanks Mikael! I will have a try. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Ignite authentication without persistence enabled?

2019-06-04 Thread Mikael
    class="org.apache.ignite.configuration.DataRegionConfiguration">                     value="#{10L * 1024 * 1024}"/>                     Den 2019-06-04 kl. 10:34, skrev Jeff

Ignite authentication without persistence enabled?

2019-06-04 Thread Jeff Jiao
Hi Igniters, We want to enable the authentication feature for our Ignite cluster, but currently, it still requires us to enable Ignite native persistence which is not suitable for our use case. Is there a way to enable persistence in IgniteConfiguration but disabled for all the caches inside

Re: User authentication and persistence

2019-03-04 Thread ilya.kasnacheev
Hello! You need at least one persistent region AFAIK, and it may be quite small just for authentication needs. Regards, -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Client and server authentication

2019-01-29 Thread Aat
you have to create a plugin or buy - ent solution ! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: how credentials can be provided in client side when ignite authentication is enabled

2018-12-21 Thread Ilya Kasnacheev
Hello! As far as my understanding goes, Apache Ignite authentication only affects thin clients (such as JDBC or native Python/PHP/C# client). You can add authorization include client node join checks, but that will require custom plugin implementation. See https://apacheignite.readme.io/docs

how credentials can be provided in client side when ignite authentication is enabled

2018-12-20 Thread radha jai
Hi, I have started the ignite servers by enabling ignite authentication, so ignite is creating username and password. I want to know how to pass the username and password in the client configuration file(.xml), so that it talks to server. Regards radha

Re: is it possible to override the default username and password when authentication is enabled

2018-12-11 Thread radha
Thanks for sharing the command. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: is it possible to override the default username and password when authentication is enabled

2018-12-11 Thread Ilya Kasnacheev
Hello! ALTER USER "ignite" WITH PASSWORD 'new_passwd' Regards, -- Ilya Kasnacheev вт, 11 дек. 2018 г. в 14:14, radha : > Thanks for you reply. > I have enabled authentication. > Let me put my understanding, > superuser [deafult user created by ignite while de

Re: is it possible to override the default username and password when authentication is enabled

2018-12-11 Thread radha
Thanks for you reply. I have enabled authentication. Let me put my understanding, superuser [deafult user created by ignite while deploying ignite] cannot be changed before/after deploying ignite. There is an option to change the superuser password using alter command after deploying the ignite

Re: is it possible to override the default username and password when authentication is enabled

2018-12-10 Thread akurbanov
Refer to advanced security section: https://apacheignite.readme.io/docs/advanced-security Currently you have to enable persistence and create/modify users via SQL. Regards, -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

is it possible to override the default username and password when authentication is enabled

2018-12-10 Thread radha
Hi, When authentication is enabled, Can the user be able to provide his own username and password which overrides the default username and password? If so, can these credentials be provided through ignite_config.xml? and how? Thanks With Regards Krupa -- Sent from: http://apache-ignite

Re: Ignite Authentication

2018-11-19 Thread Venkata Bhagavatula
Hi Denis, Sorry for comming late on this topic. I have written a custom plugin and was to able to load. Can you please help in answering the below queries: 1. GridSecurityProcessor interface is used only for authorization or for Authentication also? 2. Can we provide custom

Re: Ignite Authentication

2018-11-02 Thread Denis Magda
Hi, Ignite persistence is required only if you're planning to use Ignite authentication [1]. This step is optional if you're planning to implement your own plugin. [1] https://apacheignite.readme.io/docs/advanced-security#section-enable-authentication -- Denis On Fri, Nov 2, 2018 at 6:25 PM

Ignite Authentication

2018-11-02 Thread Venkata Bhagavatula
Hi, In the Apache ignite documentation, it is mentioned when authentication is enabled, then persistence has to be enabled. Can we enabled 3rd party persistence or does it need to be IGFS? Does persistence need to be enabled even for Custom authentication plugin? There is a requirement for us

Re: Authentication for Apache Ignite 2.5

2018-07-10 Thread aealexsandrov
Hi, 1)According to advanced security that provided by default: https://apacheignite.readme.io/docs/advanced-security It will provide the possibility to create/drop/alter the users. Also, it provides the only simple authentification with the password. Note that it required the persistence and .

Authentication for Apache Ignite 2.5

2018-07-10 Thread SINORCHIAN Remus Alex
Hello, I would like to implement authentication for all the nodes of the cluster (client and server should provide username and password to join the cluster). I tried to use the latest version 2.5, which the documentation claims to provide authentication, but it doesn't implement it for all

Re: control.bat authentication support

2018-05-22 Thread Alexey Kuznetsov
Stan, I think that we should add support for authentication in control.sh One more tool will confuse Ignite users. On Tue, May 22, 2018 at 3:53 AM, Stanislav Lukyanov <stanlukya...@gmail.com> wrote: > Hi, > > > > Ignite doesn’t provide built-in support for authentic

Re: control.bat authentication support

2018-05-22 Thread Olexandr K
at 11:53 PM, Stanislav Lukyanov <stanlukya...@gmail.com > wrote: > Hi, > > > > Ignite doesn’t provide built-in support for authentication, so the > built-in control.bat/sh also don’t have stubs for that. > > So yes, I guess you need to write your own tool. > >

RE: control.bat authentication support

2018-05-21 Thread Stanislav Lukyanov
Hi, Ignite doesn’t provide built-in support for authentication, so the built-in control.bat/sh also don’t have stubs for that. So yes, I guess you need to write your own tool. A tool like that would be pretty simple though – just start a client node, parse command line arguments and map them

control.bat authentication support

2018-05-17 Thread Olexandr K
Hi guys, I configured Ignite user/password authentication by adding custom plugin. It works fine in server/client nodes and visor but I can't find any auth support in control.bat I checked it's source code and don't see any place where I can provide credentials. Should I write my own control

Re: Authentication

2017-09-06 Thread franck102
Hi all, I am reviving this thread because as far as I can tell the initial question was not answered, and I am hitting the same problem: "* when a node starts up it needs to fetch the local password and store it in it's own configuration " ... and I can't figure out how to do that?? The only

Re: Ignite Authentication using .Net C# client.

2017-05-12 Thread Pavel Tupitsyn
Hi, this can be done by implementing security in Java and setting it up via Spring config xml and IgniteConfiguration.SpringConfigUrl in .NET. There is no direct support yet. On Fri, May 12, 2017 at 5:16 PM, virs <apps.v...@gmail.com> wrote: > Hi, > > I am trying to implement

Ignite Authentication using .Net C# client.

2017-05-12 Thread virs
Hi, I am trying to implement authentication from .Net/C# client but could not find any straight forward way to do that. Though Java api provides method like setSecurityCredentialsProvider for ignite configuration. It seems its not there for .Net API. It will be really helpfull if someone can

Re: REST API authentication

2017-03-20 Thread dkarachentsev
in context: http://apache-ignite-users.70518.x6.nabble.com/REST-API-authentication-tp11299p11308.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

REST API authentication

2017-03-19 Thread Ivan Zeng
Hello, How is authentication handled for REST API? What is required to set up HTTPS? Thanks Ivan

Re: Authentication

2017-03-08 Thread Andrey Mashenkov
to *DiscoverySpiNodeAuthenticator.authenticateNode()* as *SecurityCredentials*. On Mon, Mar 6, 2017 at 3:25 PM, conor <conor.grif...@mastercard.com> wrote: > Hi, I'm trying to implement authentication for an ignite cluster. I've > read > the blog post mentioned in other post

Authentication

2017-03-06 Thread conor
Hi, I'm trying to implement authentication for an ignite cluster. I've read the blog post mentioned in other posts here but it's incomplete and also quite old so I was hoping for some guidance. (blog post: http://smartkey.co.uk/development/securing-an-apache-ignite-cluster/) The authentication

Re: Node authentication using security credentials

2016-08-11 Thread Vladislav Pyatkov
Hi, Authentication process protects access to grid in first, but authorization allow to determine list of authorized permissions. In other word you can have some clients with difference rights. Any user can have or have not permission to grid functionality. Description of the permission you can

Re: Node authentication using security credentials

2016-08-11 Thread pragmaticbigdata
te would be deployed on a private aws network (VPC)? I do not foresee a need of having client authentication but just wanted to know your thoughts. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Node-authentication-using-security-credentials-tp6853p6976.html Sent from the

Re: Node authentication using security credentials

2016-08-08 Thread Vladislav Pyatkov
mething? > > Thanks! > > > > -- > View this message in context: http://apache-ignite-users. > 70518.x6.nabble.com/Node-authentication-using-security- > credentials-tp6853.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. > -- Vladislav Pyatkov

Re: Start node in remote server which needs authentication

2016-08-08 Thread chevy
ve checked if required ports are opened and increased TcpDiscoverySpi.networkTimeout and verified. But issue still persists. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p6855.html Sent from the Apache Ig

Node authentication using security credentials

2016-08-08 Thread pragmaticbigdata
ntext: http://apache-ignite-users.70518.x6.nabble.com/Node-authentication-using-security-credentials-tp6853.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
; -- > View this message in context: http://apache-ignite-users. > 70518.x6.nabble.com/Start-node-in-remote-server-which- > needs-authentication-tp6668p6796.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. >

Re: Start node in remote server which needs authentication

2016-08-05 Thread chevy
That is the issue I am facing. I am not able to load my key in pem file to jks as it expects certificate along with it. Anyway I can get this working? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication

Re: Start node in remote server which needs authentication

2016-08-05 Thread Chetan . V . Yadav
e.org<mailto:user@ignite.apache.org>" <user@ignite.apache.org<mailto:user@ignite.apache.org>> Date: Friday, August 5, 2016 at 4:28 PM To: "user@ignite.apache.org<mailto:user@ignite.apache.org>" <user@ignite.apache.org<mailto:user@ignite.apache.org>>

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
ype=node=6789=0>> > Date: Friday, August 5, 2016 at 3:03 PM > To: "Chetan.V.Yadav" <[hidden email] > <http:///user/SendEmail.jtp?type=node=6789=1>> > Subject: Re: Start node in remote server which needs authentication > > Are you sure, which start I

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
al? > -- > Regards, > Chetan. > > From: "vdpyatkov [via Apache Ignite Users]" <[hidden email] > <http:///user/SendEmail.jtp?type=node=6777=0>> > Date: Friday, August 5, 2016 at 11:33 AM > To: "Chetan.V.Yadav" <[hidden email] > <h

Re: Start node in remote server which needs authentication

2016-08-05 Thread chevy
n.v.ya...@target.com<mailto:chetan.v.ya...@target.com>> Subject: Re: Start node in remote server which needs authentication Hello, I don't think, which it is OS issue. Difficult understand to me where are you problem, without any demonstration. Can you please provide code example or full c

Re: Start node in remote server which needs authentication

2016-08-05 Thread Vladislav Pyatkov
users. > 70518.x6.nabble.com/Start-node-in-remote-server-which- > needs-authentication-tp6668p6770.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. > -- Vladislav Pyatkov

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
-server-which-needs-authentication-tp6668p6770.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Start node in remote server which needs authentication

2016-08-04 Thread Vladislav Pyatkov
e-users. > 70518.x6.nabble.com/Start-node-in-remote-server-which- > needs-authentication-tp6668p6762.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com. > -- Vladislav Pyatkov

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
-- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p6762.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Start node in remote server which needs authentication

2016-08-04 Thread Vladislav Pyatkov
ite.sh: 83: [: unexpected operator > bin/ignite.sh: 93: bin/ignite.sh: [[: not found > bin/ignite.sh: 147: [: 0: unexpected operator > bin/ignite.sh: 168: bin/ignite.sh: : Permission denied > > > > -- > View this message in context: http://apache-ignite-users. > 70518.x

Re: Start node in remote server which needs authentication

2016-08-04 Thread chevy
bin/ignite.sh: 147: [: 0: unexpected operator bin/ignite.sh: 168: bin/ignite.sh: : Permission denied -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p6760.html Sent from the Apache Ignite Users mailing

Re: Start node in remote server which needs authentication

2016-08-03 Thread chevy
in these nodes as soon as I start it? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p6704.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: Start node in remote server which needs authentication

2016-08-03 Thread chevy
that starts the node. I do not want to ssh through my terminal and everything needs to be programmatically driven just like how I do it from my local. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p6695

Re: Start node in remote server which needs authentication

2016-08-02 Thread vkulichenko
SSL-related documentation: http://www.eclipse.org/jetty/documentation/current/configuring-ssl.html -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Start-node-in-remote-server-which-needs-authentication-tp6668p6681.html Sent from the Apache Ignite Users

Start node in remote server which needs authentication

2016-08-02 Thread chevy
for obvious reasons it asks me to "make sure IP finder addresses are correct and firewalls are disabled on all host machines". So, please suggest me the way to start node in this remote machine with authentication using .pem file/ any other alternate approach. Also, I access data loade

Re: visor command line authentication.

2016-03-08 Thread vkulichenko
Start command essentially connects to the remote host using SSH and executes ignite.sh script there. Username and password here are for SSH connection. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/visor-command-line-authentication-tp3395p3405.html Sent

Re: visor command line authentication.

2016-03-08 Thread krishna
ame and password I need to provide as they are not optional parameters. Thanks for taking a look. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/visor-command-line-authentication-tp3395p3403.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.