Where is the / lib / security folder from JRE 8 under OS X?

I am looking for the / lib / security folder from Java JRE 8 under OS X. On Windows, the fodler is located in the java installation directory in the lib \ security subfolder, for example: C: \ Programm Files \ Java \ JRE_xxx \ Lib \ security. But under OS X (El Capitan) I did not find this folder.

When I install the Java JDK, it is inside the JDK installation folder, but the JRe comes with the certificates sent, which are also stored in the cacerts file inside the lib / security folder. So this folder should be somewhere in OS X, because when I launch the Java control panel, I can see these certificates.

thanks.

+6
source share
3 answers

Java JREs are installed in / Library / Internet Plug-Ins. Thus, the lib / securoty folder is located in / Library / Internet Plug-Ins / JavaAppletPlugin.plugin / Contents / Home / lib / security

For Java JDK you need to search in / Library / Java / JavaVirtualMachines / JDK_xxx / ....

+2
source

Its location under

Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/security 
+7
source

Have you searched for / etc / java / security?

or / Library / Java / Home / lib / security?

0
source

All Articles