Skip to content

Commit 6d85e9a

Browse files
authored
Merge pull request #7774 from onnozweers/master
docs: change openjdk 11 to 17
2 parents ec2aa80 + 3541aff commit 6d85e9a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/TheBook/src/main/markdown/cookbook-debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This chapter provides an information on how to exam running dCache system, ident
44

55
## Java Flight recorder
66

7-
When debugging an issue on a running system often we need to collect jvm performance stats with `Java flight recorder`. Starting from release 7.2 the Java flight recorder attach listener is enabled by default. Site admins can collect and provide developers with additional information when high CPU load, memory consumption or file descriptor leaks are observed. To enable the `flight recorder` _jcmd_ command is used, which is typically provided as a part of `java-11-openjdk-devel` (on RHEL and clones).
7+
When debugging an issue on a running system often we need to collect jvm performance stats with `Java flight recorder`. Starting from release 7.2 the Java flight recorder attach listener is enabled by default. Site admins can collect and provide developers with additional information when high CPU load, memory consumption or file descriptor leaks are observed. To enable the `flight recorder` _jcmd_ command is used, which is typically provided as a part of `java-17-openjdk-headless` (on RHEL and clones).
88

99
To control recoding the following subcommands of _jcmd_ available:
1010

@@ -111,4 +111,4 @@ Overhead Shared Object Symbol
111111
0.74% [kernel] [k] entry_SYSCALL_64
112112
```
113113

114-
More info on usage perf usage at [perf Examples](https://www.brendangregg.com/perf.html) by Brendan Gregg.
114+
More info on usage perf usage at [perf Examples](https://www.brendangregg.com/perf.html) by Brendan Gregg.

docs/TheBook/src/main/markdown/dcache-minimal-installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ and how dCache's users will interact with the system. There is no one size fits
1313
- At least 500 MiB free disk space
1414

1515
- Software:
16-
- OpenJDK 11
16+
- OpenJDK 17
1717
- Postgres SQL Server 13.0 or later
1818
- ZooKeeper version 3.5 (embedded)
1919

2020
## Minimal Installation
2121

2222
### Java
23-
For this installation, we use OpenJDK 11 (java 17 for dCache version 10.2 and later)
23+
For this installation, we use OpenJDK 17.
2424

2525
```bash
2626
sudo -s
2727

28-
yum install java-11-openjdk
28+
dnf install java-17-openjdk
2929

30-
dnf install java-11-openjdk-devel
30+
dnf install java-17-openjdk-devel
3131
```
3232
For a production installation, you will need standalone ZooKeeper version 3.8 or later.
3333

docs/TheBook/src/main/markdown/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ rpm -ivh https://www.dcache.org/old/downloads/1.9/repo/##SERIES##/dcache-##VERSI
7474
| 1:dcache-##VERSION##-1 ################################# [100%]
7575
```
7676

77-
For example, `##SERIES##` could be `9.1` and `##VERSION##` could be `9.1.1`.
77+
For example, `##SERIES##` could be `10.1` and `##VERSION##` could be `10.1.1`.
7878

7979
### Installing prerequisite packages
8080

8181
First, install OpenJDK and httpd-tools packages.
8282

8383
```console-root
84-
yum install java-11-openjdk-headless httpd-tools
84+
yum install java-17-openjdk-headless httpd-tools
8585
```
8686

8787
### Installing PostgreSQL

0 commit comments

Comments
 (0)