Reputation: 51
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
Reputation: 19331
Avoid closing it? Why would it terminate otherwise? Do you get any error messages?
Execute the following SQL command: ALTER USER "ignite" WITH PASSWORD 'newPassword';
Upvotes: 2