Skip to content

Instantly share code, notes, and snippets.

@thomasdarimont
Last active September 9, 2021 02:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasdarimont/94ab3eb748742d2e793f4f5d32e05932 to your computer and use it in GitHub Desktop.
Save thomasdarimont/94ab3eb748742d2e793f4f5d32e05932 to your computer and use it in GitHub Desktop.
PoC for building a custom OpenJDK 12 JDK (47MB) with JLink that can run Keycloak 6.0.1

This is a small PoC for creating a custom Java-Runtime with reduced dependencies and tools. The idea is to use this JRE in a Docker image layer on top of a slim Linux distribution.

Cleanup java-runtime-kc

rm -rf java-runtime-kc

Create custom JRE with JLink

Produces a 51M custom JRE distribution

jlink \
  --no-header-files \
  --no-man-pages \
  --compress=2 \
  --strip-debug \
  --vm=server \
  --exclude-files="**/bin/rmiregistry,**/bin/jrunscript,**/bin/rmid" \
  --add-modules java.base,java.instrument,java.logging,java.management,java.naming,java.scripting,java.se,java.security.jgss,java.security.sasl,java.sql,java.transaction.xa,java.xml,java.xml.crypto,jdk.security.auth,jdk.xml.dom,jdk.unsupported,jdk.crypto.cryptoki,jdk.crypto.ec \
  --output java-runtime-kc

Optimize

Removing debug symbols. This step reduces the java-runtime-kc to 47M MB

strip -p --strip-unneeded java-runtime-kc/lib/server/libjvm.so

Java Runtime Directory Layout

$ tree -L 2 java-runtime-kc              
java-runtime-kc
├── bin
│   ├── java
│   └── keytool
├── conf
│   ├── logging.properties
│   ├── net.properties
│   ├── sdp
│   ├── security
│   └── sound.properties
├── legal
│   ├── java.base
│   ├── java.compiler
│   ├── java.datatransfer
│   ├── java.desktop
│   ├── java.instrument
│   ├── java.logging
│   ├── java.management
│   ├── java.management.rmi
│   ├── java.naming
│   ├── java.net.http
│   ├── java.prefs
│   ├── java.rmi
│   ├── java.scripting
│   ├── java.se
│   ├── java.security.jgss
│   ├── java.security.sasl
│   ├── java.sql
│   ├── java.sql.rowset
│   ├── java.transaction.xa
│   ├── java.xml
│   ├── java.xml.crypto
│   ├── jdk.security.auth
│   ├── jdk.unsupported
│   └── jdk.xml.dom
├── lib
│   ├── classlist
│   ├── jexec
│   ├── jrt-fs.jar
│   ├── jspawnhelper
│   ├── jvm.cfg
│   ├── libawt_headless.so
│   ├── libawt.so
│   ├── libawt_xawt.so
│   ├── libfontmanager.so
│   ├── libinstrument.so
│   ├── libj2gss.so
│   ├── libjaas.so
│   ├── libjavajpeg.so
│   ├── libjava.so
│   ├── libjawt.so
│   ├── libjimage.so
│   ├── libjli.so
│   ├── libjsig.so
│   ├── libjsound.so
│   ├── liblcms.so
│   ├── libmanagement.so
│   ├── libmlib_image.so
│   ├── libnet.so
│   ├── libnio.so
│   ├── libprefs.so
│   ├── librmi.so
│   ├── libsplashscreen.so
│   ├── libverify.so
│   ├── libzip.so
│   ├── modules
│   ├── psfontj2d.properties
│   ├── psfont.properties.ja
│   ├── security
│   ├── server
│   └── tzdb.dat
└── release

32 directories, 39 files

$ du -sh java-runtime-kc  
47M	java-runtime-kc

Run Keycloak

JAVA_HOME=/home/tom/dev/playground/java/jlink-demo/java-runtime-kc bin/standalone.sh

Output:

=========================================================================

  JBoss Bootstrap Environment

  JBOSS_HOME: /home/tom/dev/playground/keycloak/keycloak-6.0.1

  JAVA: /home/tom/dev/playground/java/jlink-demo/java-runtime-kc/bin/java

  JAVA_OPTS:  -server -Xms64m -Xmx512m -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=256m -Djava.net.preferIPv4Stack=true -Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true  --add-exports=java.base/sun.nio.ch=ALL-UNNAMED --add-exports=jdk.unsupported/sun.misc=ALL-UNNAMED --add-exports=jdk.unsupported/sun.reflect=ALL-UNNAMED --add-modules=java.se

=========================================================================

00:39:20,360 INFO  [org.jboss.modules] (main) JBoss Modules version 1.9.0.Final
00:39:20,869 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.5.Final
00:39:20,883 INFO  [org.jboss.threads] (main) JBoss Threads version 2.3.3.Final
00:39:21,113 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: Keycloak 6.0.1 (WildFly Core 8.0.0.Final) starting
00:39:22,123 INFO  [org.wildfly.security] (ServerService Thread Pool -- 19) ELY00001: WildFly Elytron version 1.8.0.Final
...
00:39:31,221 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
00:39:31,224 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management
00:39:31,224 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:9990
00:39:31,224 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: Keycloak 6.0.1 (WildFly Core 8.0.0.Final) started in 11322ms - Started 616 of 879 services (563 services are lazy, passive or on-demand)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment