Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _data/shared_chrome.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions _docs/latest/developers-guide/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To complete any build of the Metabase code, you'll need to install the following

1. [Clojure (https://clojure.org)](https://clojure.org/guides/getting_started) - install the latest release by following the guide depending on your OS

2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 21 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))
2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 25 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))

3. [Node.js (https://nodejs.org/)](https://nodejs.org/) - latest LTS release

Expand All @@ -42,7 +42,7 @@ curl -fsSL https://bun.sh/install | bash
On a most recent stable Ubuntu/Debian, all the tools above, with the exception of Clojure and Bun, can be installed by using:

```
sudo apt install openjdk-21-jdk nodejs
sudo apt install openjdk-25-jdk nodejs
```

If you have multiple JDK versions installed in your machine, be sure to switch your JDK before building with:
Expand All @@ -51,7 +51,7 @@ If you have multiple JDK versions installed in your machine, be sure to switch y
sudo update-alternatives --config java
```

Then select Java 21 in the menu.
Then select Java 25 in the menu.

### Running on M1 Apple computers

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ You may already have Java installed. To check the version, open a terminal and r
java -version
```

If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 21 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 21 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).
If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 25 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 25 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).

### 2. Download Metabase

Expand Down
4 changes: 2 additions & 2 deletions _docs/latest/troubleshooting-guide/running.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Metabase runs on the Java Virtual Machine (JVM), and depending on how it's confi

## Java version

Metabase should be run on Java version 21 (older versions are unsupported).
Metabase should be run on Java version 25 (older versions are unsupported).

When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 21.0.1 and Java 21.0.4, choose the latest version (in this case, 21.0.4).
When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 25.0.1 and Java 25.0.3, choose the latest version (in this case, 25.0.3).

We recommend running only one version of Java on a single server, because running more than one version of Java on a single server can cause application problems. If you need to run multiple applications that each require a different java version, consider using containers (as containers were meant to solve this problem). Otherwise, just make sure that you can run all your applications with a single Java version.

Expand Down
6 changes: 3 additions & 3 deletions _docs/v0.62/developers-guide/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To complete any build of the Metabase code, you'll need to install the following

1. [Clojure (https://clojure.org)](https://clojure.org/guides/getting_started) - install the latest release by following the guide depending on your OS

2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 21 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))
2. [Java Development Kit JDK (https://adoptopenjdk.net/releases.html)](https://adoptopenjdk.net/releases.html) - you need to install JDK 25 ([more info on Java versions](../installation-and-operation/running-the-metabase-jar-file))

3. [Node.js (https://nodejs.org/)](https://nodejs.org/) - latest LTS release

Expand All @@ -40,7 +40,7 @@ curl -fsSL https://bun.sh/install | bash
On a most recent stable Ubuntu/Debian, all the tools above, with the exception of Clojure and Bun, can be installed by using:

```
sudo apt install openjdk-21-jdk nodejs
sudo apt install openjdk-25-jdk nodejs
```

If you have multiple JDK versions installed in your machine, be sure to switch your JDK before building with:
Expand All @@ -49,7 +49,7 @@ If you have multiple JDK versions installed in your machine, be sure to switch y
sudo update-alternatives --config java
```

Then select Java 21 in the menu.
Then select Java 25 in the menu.

### Running on M1 Apple computers

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ You may already have Java installed. To check the version, open a terminal and r
java -version
```

If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 21 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 21 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).
If Java isn't installed, you'll need to install Java before you can run Metabase. We recommend version 25 of JRE from [Eclipse Temurin](https://adoptium.net/) with HotSpot JVM. You can run Metabase wherever Java 25 runs. Earlier Java versions aren't supported. The particular processor architecture shouldn't matter (although we only test Metabase for x86 and ARM).

### 2. Download Metabase

Expand Down
4 changes: 2 additions & 2 deletions _docs/v0.62/troubleshooting-guide/running.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Metabase runs on the Java Virtual Machine (JVM), and depending on how it's confi

## Java version

Metabase should be run on Java version 21 (older versions are unsupported).
Metabase should be run on Java version 25 (older versions are unsupported).

When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 21.0.1 and Java 21.0.4, choose the latest version (in this case, 21.0.4).
When searching for versions of Java, always use the latest minor version of the major version you're choosing. E.g., when choosing between Java 25.0.1 and Java 25.0.3, choose the latest version (in this case, 25.0.3).

We recommend running only one version of Java on a single server, because running more than one version of Java on a single server can cause application problems. If you need to run multiple applications that each require a different java version, consider using containers (as containers were meant to solve this problem). Otherwise, just make sure that you can run all your applications with a single Java version.

Expand Down