JAYAPRAKASH
JAYAPRAKASH

Reputation: 51

Changing Password to connect the Server in Apache Ignite

I am running apache ignite 2.8.0. Using java thin client i am able to connect the server with default username = 'ignite' and password = 'ignite'.

ClientConfiguration cfg = new ClientConfiguration()
        .setAddresses("127.0.0.1:10800")
        .setUserName("ignite")
        .setUserPassword("ignite");

Now i have two question:

Upvotes: 0

Views: 918

Answers (1)

alamar
alamar

Reputation: 19331

  1. Avoid closing it? Why would it terminate otherwise? Do you get any error messages?

  2. Execute the following SQL command: ALTER USER "ignite" WITH PASSWORD 'newPassword';

Upvotes: 2

Related Questions