You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it hangs for about 1 minute and then returns the error: ORA-28759: failure to open file
Using strace, I was able to find out that the init is looking for the cwallet.sso in the LD_LIBRARY_PATH/network/admin folder
close(9) = 0
openat(AT_FDCWD, "/instantclient_21_1/ldap/admin/sslconf.ora", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/instantclient_21_1/network/admin/ewallet.p12", 0x7ffd30281db0) = -1 ENOENT (No such file or directory)
stat("/instantclient_21_1/network/admin/cwallet.sso", 0x7ffd30281db0) = -1 ENOENT (No such file or directory)
close(8)
When I place the wallet content there, it works.
I have set TNS_ADMIN environment variable to the credentials path
I have set LD_LIBRARY_PATH to the instantclient library location
I need to set TNS_ADMIN to LD_LIBRARY_PATH/network/admin for the wallet to be discovered and the connection to work.