Hi,
Internally, Ignite will use new File(keyStoreFilePath) ...
This will interpret the keyStoreFilePath relative to the process working
directory.
Use:
System.out.println("Working Directory = " +
System.getProperty("user.dir"));
to determine your working dir.
Then use:
File file = new File(keyStoreFilePath);
System.out.println(file.getAbsolutePath());
to see whether your file is in the correct place.
see:
https://github.com/apache/ignite/blob/832cf801301f79b7e904b004e33855b105387982/modules/core/src/main/java/org/apache/ignite/ssl/SslContextFactory.java#L488
for implementation.
Thanks, Alex
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/