Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CTOR-1199 : Java version for operatingsystems-as400-connector #3865

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
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,51 @@ Voici le tableau des services pour ce connecteur, détaillant les métriques rat

## Prérequis

Ce plugin fonctionne un peu différemment des plugins plus communs. Un connecteur est requis afin de pouvoir communiquer avec les systèmes AS400/iSeries. Installez le connecteur grâce à la commande suivante :
Ce plugin fonctionne un peu différemment des plugins plus communs.
Un connecteur est requis afin de pouvoir communiquer avec les systèmes AS400/iSeries.
Installez le connecteur grâce à la commande suivante :

```shell
<Tabs groupId="sync">
<TabItem value="Alma / RHEL / Oracle Linux 8" label="Alma / RHEL / Oracle Linux 8">

```bash
dnf install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
<TabItem value="Alma / RHEL / Oracle Linux 9" label="Alma / RHEL / Oracle Linux 9">

```bash
dnf install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
<TabItem value="Debian 11 & 12" label="Debian 11 & 12">

```bash
apt install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
<TabItem value="CentOS 7" label="CentOS 7">

```bash
yum install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
</Tabs>

Un même connecteur peut servir de relais entre plusieurs hôtes et plusieurs systèmes AS400.

> Attention, une mise à jour récente de la version java (8 -> 17) dans le daemon (versions 2.0.3 et supérieures)
> implique que si java 8 était déjà installé sur votre système, vous devez forcer le passage en java 17 pour que le daemon fonctionne.
> Exécutez la commande suivante :

```shell
update-alternatives --config java
```

## Installer le connecteur de supervision

### Pack
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,17 +146,52 @@ Here is the list of services for this connector, detailing all metrics linked to

## Prerequisites

This plugin works in a slightly different way than the common ones. It requires
a connector to communicate with the AS400/iSeries system.
This plugin works in a slightly different way than the common ones.
It requires a connector to communicate with the AS400/iSeries system.

You can install the connector using this command:

```shell
<Tabs groupId="sync">
<TabItem value="Alma / RHEL / Oracle Linux 8" label="Alma / RHEL / Oracle Linux 8">

```bash
dnf install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
<TabItem value="Alma / RHEL / Oracle Linux 9" label="Alma / RHEL / Oracle Linux 9">

```bash
dnf install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
<TabItem value="Debian 11 & 12" label="Debian 11 & 12">

```bash
apt install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
<TabItem value="CentOS 7" label="CentOS 7">

```bash
yum install centreon-plugin-Operatingsystems-AS400-daemon
```

</TabItem>
</Tabs>

A connector can act as a relay between several Hosts and several AS400 systems.

> Please note that a recent update of the java version (8 -> 17) in the daemon (versions 2.0.3 and higher)
> means that if java 8 was already installed on your system, you must force the switch to java 17 for the
> daemon to work. Run the following command:

```shell
update-alternatives --config java
```

## Installing the monitoring connector

### Pack
Expand Down