Hi,

https://apacheignite.readme.io/docs/advanced-security


<bean id="ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration">
    <!-- Enabling Apache Ignite Persistent Store. -->
    <property name="dataStorageConfiguration">
        <bean class="org.apache.ignite.configuration.DataStorageConfiguration">
            <property name="defaultDataRegionConfiguration">
                <bean class="org.apache.ignite.configuration.DataRegionConfiguration">
<property name="persistenceEnabled" value="true"/>
                </bean>
            </property>
        </bean>
    </property>

    <!-- Enabling authentication. -->
<property name="authenticationEnabled" value="true"/>

  <!-- Other Ignite configurations. -->
  ...

</bean>


在 2019/9/30 下午9:52, Mahesh Renduchintala 写道:
Hi,

we are looking to start adding security with some basic authentication.
To begin with change the USER "ignite" password to something else.

When using the SQL  - ALTER USER "ignite" WITH PASSWORD 'abc123';
We get the below error.

Error: Operation not allowed: authorized context is empty.


Is there any example or something to get this basic operation right?
I understand, for advanced security, we need to implement custom security plugins, but for the above simple thing, is there a quick solution.

regards
mahesh

Reply via email to