From 269899ae10adb7503dbfb878d73fc928a595a741 Mon Sep 17 00:00:00 2001 From: Jean Christophe Roques Date: Thu, 5 Dec 2024 13:28:44 +0100 Subject: [PATCH 1/4] add agent host install add plugins requirements no debian 11 cma --- .../getting-started/how-to-guides/cma.md | 70 +++++++++++++++++-- .../getting-started/how-to-guides/cma.md | 70 +++++++++++++++++-- 2 files changed, 128 insertions(+), 12 deletions(-) diff --git a/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md index 1da1c21217d3..c0dcebdc6a2a 100644 --- a/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -26,7 +26,6 @@ L'agent peut être installé sur et superviser les OS suivants : * Alma 8 * Alma 9 -* Debian 11 * Debian 12 * Ubuntu 22.04 LTS @@ -217,7 +216,55 @@ L'Agent de supervision Centreon est maintenant capable de communiquer avec Centr -* Installez le paquet **centreon-monitoring-agent**. +#### Dépôt Centreon et installation de l'agent + +Installez le dépôt Centreon puis l'agent à l'aide des commandes suivantes : + + + + +```shell +dnf install -y dnf-plugins-core +dnf config-manager --add-repo https://packages.centreon.com/rpm-standard/24.10/el8/centreon-24.10.repo +dnf install centreon-monitoring-agent +``` + + + + +```shell +dnf install -y dnf-plugins-core +dnf config-manager --add-repo https://packages.centreon.com/rpm-standard/24.10/el9/centreon-24.10.repo +dnf install compat-openssl11 centreon-monitoring-agent +``` + + + + +```shell +apt-get update +apt-get -y install lsb-release gpg wget +echo "deb https://packages.centreon.com/apt-standard-24.10-stable $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon.list +echo "deb https://packages.centreon.com/apt-plugins-stable/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon-plugins.list +``` + +Ensuite, importez la clé du dépôt : + +```shell +wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /etc/apt/trusted.gpg.d/centreon.gpg > /dev/null 2>&1 +``` + +Ensuite, installez l'agent : + +```shell +apt-get update +apt install centreon-monitoring-agent +``` + + + + +* Configurez le **centreon-monitoring-agent**. 1. Modifiez le fichier **/etc/centreon-monitoring-agent/centagent.json** local (4 cas) : @@ -225,7 +272,7 @@ L'Agent de supervision Centreon est maintenant capable de communiquer avec Centr ```json { - "log_level":"trace", + "log_level":"info", "endpoint":":4317", "host":"host_1", "log_type":"file", @@ -238,7 +285,7 @@ L'Agent de supervision Centreon est maintenant capable de communiquer avec Centr ```json { - "log_level":"trace", + "log_level":"info", "endpoint":":4317", "host":"host_1", "log_type":"file", @@ -253,7 +300,7 @@ L'Agent de supervision Centreon est maintenant capable de communiquer avec Centr ```json { - "log_level":"trace", + "log_level":"info", "endpoint":"0.0.0.0:4317", "host":"host_1", "log_type":"file", @@ -266,7 +313,7 @@ L'Agent de supervision Centreon est maintenant capable de communiquer avec Centr ```json { - "log_level":"trace", + "log_level":"info", "endpoint":"0.0.0.0:4317", "host":"host_1", "log_type":"file", @@ -282,6 +329,8 @@ L'Agent de supervision Centreon est maintenant capable de communiquer avec Centr +Dans le champ **host**, entrez le nom de l'hôte à superviser tel que vous l'avez saisi dans l'interface Centreon. Si absent, l'agent utilisera le hostname de la machine. + #### Options de log Deux types de log sont disponibles : @@ -337,6 +386,9 @@ Ce dépôt permettra d'installer les plugins Centreon ainsi que **les dépendanc ```bash +dnf -y install dnf-plugins-core oracle-epel-release-el8 +dnf config-manager --set-enabled ol8_codeready_builder + cat >/etc/yum.repos.d/centreon-plugins.repo <<'EOF' [centreon-plugins-stable] name=Centreon plugins repository. @@ -398,6 +450,10 @@ dnf install -y centreon-plugin-Operatingsystems-Linux-Local.noarch ```bash +dnf install dnf-plugins-core +dnf install epel-release +dnf config-manager --set-enabled crb + cat >/etc/yum.repos.d/centreon-plugins.repo <<'EOF' [centreon-plugins-stable] name=Centreon plugins repository. @@ -459,6 +515,8 @@ dnf install -y centreon-plugin-Operatingsystems-Linux-Local.noarch ```bash +apt update && apt install lsb-release ca-certificates apt-transport-https software-properties-common wget gnupg2 curl + wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /etc/apt/trusted.gpg.d/centreon.gpg > /dev/null 2>&1 echo "deb https://packages.centreon.com/apt-plugins-stable/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon-plugins.list apt-get update diff --git a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md index 400e6a406d27..c79caafe7946 100644 --- a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -25,7 +25,6 @@ The CMA can be installed on and monitor the following OSs: * Alma 8 * Alma 9 -* Debian 11 * Debian 12 * Ubuntu 22.04 LTS @@ -217,7 +216,55 @@ The CMA can now communicate with Centreon. You can set up the monitoring of your -* Install the **centreon-monitoring-agent** package. +#### Centreon repository and agent install + +Install the Centreon repository and agent using the following commands: + + + + +```shell +dnf install -y dnf-plugins-core +dnf config-manager --add-repo https://packages.centreon.com/rpm-standard/24.10/el8/centreon-24.10.repo +dnf install centreon-monitoring-agent +``` + + + + +```shell +dnf install -y dnf-plugins-core +dnf config-manager --add-repo https://packages.centreon.com/rpm-standard/24.10/el9/centreon-24.10.repo +dnf install compat-openssl11 centreon-monitoring-agent +``` + + + + +```shell +apt-get update +apt-get -y install lsb-release gpg wget +echo "deb https://packages.centreon.com/apt-standard-24.10-stable $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon.list +echo "deb https://packages.centreon.com/apt-plugins-stable/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon-plugins.list +``` + +Then, import repository key : + +```shell +wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /etc/apt/trusted.gpg.d/centreon.gpg > /dev/null 2>&1 +``` + +Then, install agent : + +```shell +apt-get update +apt install centreon-monitoring-agent +``` + + + + +* Configure **centreon-monitoring-agent**. 1. Modify the **/etc/centreon-monitoring-agent/centagent.json** file (4 cases): @@ -227,7 +274,7 @@ The CMA can now communicate with Centreon. You can set up the monitoring of your ```json { - "log_level":"trace", + "log_level":"info", "endpoint":":4317", "host":"host_1", "log_type":"file", @@ -240,7 +287,7 @@ The CMA can now communicate with Centreon. You can set up the monitoring of your ```json { - "log_level":"trace", + "log_level":"info", "endpoint":":4317", "host":"host_1", "log_type":"file", @@ -255,7 +302,7 @@ The CMA can now communicate with Centreon. You can set up the monitoring of your ```json { - "log_level":"trace", + "log_level":"info", "endpoint":"0.0.0.0:4317", "host":"host_1", "log_type":"file", @@ -269,7 +316,7 @@ The CMA can now communicate with Centreon. You can set up the monitoring of your ```json { - "log_level":"trace", + "log_level":"info", "endpoint":"0.0.0.0:4317", "host":"host_1", "log_type":"file", @@ -286,6 +333,8 @@ The CMA can now communicate with Centreon. You can set up the monitoring of your +In the **host** field, enter the name of the host to be monitored as you have entered it in the Centreon interface. If absent, the agent will use the machine's hostname. + #### Log configuration You can configure two kinds of log output: @@ -344,6 +393,9 @@ standard distribution repositories**. ```bash +dnf -y install dnf-plugins-core oracle-epel-release-el8 +dnf config-manager --set-enabled ol8_codeready_builder + cat >/etc/yum.repos.d/centreon-plugins.repo <<'EOF' [centreon-plugins-stable] name=Centreon plugins repository. @@ -405,6 +457,10 @@ dnf install -y centreon-plugin-Operatingsystems-Linux-Local.noarch ```bash +dnf install dnf-plugins-core +dnf install epel-release +dnf config-manager --set-enabled crb + cat >/etc/yum.repos.d/centreon-plugins.repo <<'EOF' [centreon-plugins-stable] name=Centreon plugins repository. @@ -466,6 +522,8 @@ dnf install -y centreon-plugin-Operatingsystems-Linux-Local.noarch ```bash +apt update && apt install lsb-release ca-certificates apt-transport-https software-properties-common wget gnupg2 curl + wget -O- https://apt-key.centreon.com | gpg --dearmor | tee /etc/apt/trusted.gpg.d/centreon.gpg > /dev/null 2>&1 echo "deb https://packages.centreon.com/apt-plugins-stable/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/centreon-plugins.list apt-get update From 794d6b7476db221c97de7e81fa639bd24fb3ef62 Mon Sep 17 00:00:00 2001 From: Jean Christophe Roques Date: Thu, 5 Dec 2024 15:56:44 +0100 Subject: [PATCH 2/4] review comments --- .../getting-started/how-to-guides/cma.md | 19 +++++++++++++++---- .../getting-started/how-to-guides/cma.md | 17 ++++++++++++++--- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md index c0dcebdc6a2a..76754de8499e 100644 --- a/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -27,7 +27,6 @@ L'agent peut être installé sur et superviser les OS suivants : * Alma 8 * Alma 9 * Debian 12 -* Ubuntu 22.04 LTS @@ -340,9 +339,15 @@ Deux types de log sont disponibles : Dans le cas de logging vers un fichier, une rotation peut être paramétrée avec les clés **log_max_file_size** et **log_max_files**. -Les niveaux de logs possibles sont: trace, debug, info, warning, error, critical et off. +Les niveaux de logs possibles sont: +* off: aucun log +* critical: erreurs critiques +* error: toutes les erreurs +* info: quelques informations supplémentaires +* debug: quelques informations sur les connections en plus +* trace: le niveau de trace le plus bavard qui permet de voir les messages envoyés et reçus vers le poller -2. Redémarrer l'agent : +1. Redémarrer l'agent : ```shell systemctl restart centagent ``` @@ -363,7 +368,13 @@ Les niveaux de logs possibles sont: trace, debug, info, warning, error, critical * **File** : les logs sont écrits dans un fichier * **EventLog** : les logs sont envoyés vers les [journaux d'évènements](/docs/alerts-notifications/event-log). Si vous choisissez de logger dans un fichier, vous pouvez configurer la rotation de logs en renseignant **Max File Size** et **Max number of files**. - Les niveaux de logs possibles sont: trace, debug, info, warning, error, critical et off. + Les niveaux de logs possibles sont: + * off: aucun log + * critical: erreurs critiques + * error: toutes les erreurs + * info: quelques informations supplémentaires + * debug: quelques informations sur les connections en plus + * trace: le niveau de trace le plus bavard qui permet de voir les messages envoyés et reçus vers le poller 5. Configurez les paramètres de chiffrement. Le chiffrement est activé par défaut. Dans le cas où l'option **Poller-initiated connection** est activée, renseignez **Max File Size** et **Max number of files**. diff --git a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md index c79caafe7946..e55dcec13aba 100644 --- a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -26,7 +26,6 @@ The CMA can be installed on and monitor the following OSs: * Alma 8 * Alma 9 * Debian 12 -* Ubuntu 22.04 LTS @@ -343,7 +342,13 @@ You can configure two kinds of log output: If you choose to log into a file, log rotation can be customized using the **log_max_file_size** and **log_max_files** options. -Allowed log levels are: trace, debug, info, warning, error, critical and off. +Allowed log levels are: +* off: no logs +* critical: critical errors +* error: all errors +* info: additional information +* debug: more information about connections +* trace: the most verbose trace level showing messages sent and received to the poller 2. Restart the CMA: @@ -369,7 +374,13 @@ systemctl restart centagent If you choose to log into a file, log rotation can be customized using the **Max File Size** and **Max number of files** options. -Allowed log levels are: trace, debug, info, warning, error, critical and off. +Allowed log levels are: +* off: no logs +* critical: critical errors +* error: all errors +* info: additional information +* debug: more information about connections +* trace: the most verbose trace level showing messages sent and received to the poller 5. Configure encryption Encryption is activated by default. In case of a poller-initiated connection, the private key file and certificate file are mandatory. From 139656b2c4841e8713e34b9ce80ede18e088850f Mon Sep 17 00:00:00 2001 From: Jean Christophe Roques Date: Fri, 6 Dec 2024 09:43:54 +0100 Subject: [PATCH 3/4] add silent mode tab --- .../getting-started/how-to-guides/cma.md | 57 ++++++++++++++++--- .../getting-started/how-to-guides/cma.md | 41 +++++++++++-- 2 files changed, 86 insertions(+), 12 deletions(-) diff --git a/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md index 76754de8499e..b07f8e4ca656 100644 --- a/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/i18n/fr/docusaurus-plugin-content-docs-pp/current/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -355,19 +355,65 @@ Les niveaux de logs possibles sont: -1. [Téléchargez l'installer de l'agent] (https://github.com/centreon/centreon-collect/releases/download/centreon-collect-24.04.6/centreon-monitoring-agent-24.10.0.exe) sur tous les serveurs que vous voulez superviser. +[Téléchargez l'installer de l'agent] (https://github.com/centreon/centreon-collect/releases/download/centreon-collect-24.04.6/centreon-monitoring-agent-24.10.0.exe) sur tous les serveurs que vous voulez superviser. -2. Lancez l'installer (durant la configuration, vous pourrez cliquer sur les (i) pour avoir de l'aide). -3. Configurez l'endpoint et le type de connexion : +Le programme d'installation de l'agent peut s'utiliser suivant deux modes: + + + + +1. Lancez l'installer (durant la configuration, vous pourrez cliquer sur les (i) pour avoir de l'aide). + +2. Configurez l'endpoint et le type de connexion : * Dans le champ **Host name in Centreon**, entrez le nom de l'hôte à superviser tel que vous l'avez saisi dans l'interface Centreon. * Dans le cas le plus courant (l'agent se connecte au poller), saisissez l'adresse IP ou le nom DNS suivi du port OpenTelemetry sur lequel écoute le poller, sous la forme \:port, par exemple 192.168.45.32:4317. * Si vous activez l'option **Poller-initiated connection** (le collecteur se connecte à l'agent), vous devez choisir l'interface (toutes les interfaces : 0.0.0.0) et le port (généralement 4317) sur lequel l'agent va accepter les connections venant du collecteur. -4. Configurez les options de log. Deux types de log sont disponibles : +3. Configurez les options de log. Deux types de log sont disponibles : * **File** : les logs sont écrits dans un fichier * **EventLog** : les logs sont envoyés vers les [journaux d'évènements](/docs/alerts-notifications/event-log). Si vous choisissez de logger dans un fichier, vous pouvez configurer la rotation de logs en renseignant **Max File Size** et **Max number of files**. + +4. Configurez les paramètres de chiffrement. +Le chiffrement est activé par défaut. Dans le cas où l'option **Poller-initiated connection** est activée, renseignez **Max File Size** et **Max number of files**. + + + + + +Dans ce mode, aucune Ihm est lancée. Comme cet installer n'est pas un programme console, il rend immédiatement la main même s'il n'a pas encore fini. Vous devez attendre de voir apparaitre dans la console le message indiquant qu'il a terminé. +Si vous devez tester le succès de l'installation, vous devez récupérer l'exit status. Vous pouvez le lancer dans un powershell et attendre la fin du processus. L'exit status vaudra 0 si tout s'est bien passé. + +Pour le lancer en mode silencieux, vous devez mettre en premier argument /S. +Vous pouvez avoir une liste des arguments avec la ligne de commande: +```shell +centreon-monitoring-agent.exe /S --help +``` + +Les différents arguments sont: + +| flag | description | +| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| --install_cma | Si ce flag est présent, l'agent sera installé | +| --install_plugins | Si ce flag est présent, les plugins seront installés | +| --hostname | Le nom de l'hôte à superviser tel que vous l'avez saisi dans l'interface Centreon | +| --endpoint | Dans le cas le plus courant (l'agent se connecte au poller), saisissez l'adresse IP ou le nom DNS suivi du port OpenTelemetry sur lequel écoute le poller, sous la forme \:port, par exemple 192.168.45.32:4317. Si vous activez l'option **--reverse** (le collecteur se connecte à l'agent), vous devez choisir l'interface (toutes les interfaces : 0.0.0.0) et le port (généralement 4317) sur lequel l'agent va accepter les connections venant du collecteur. | +| --reverse | Si ce flag est présent, l'agent accepte les connections venant du collecteur | +| --log_type | event_log ou file. Si vous choisissez fichier, le paramètre log_file est obligatoire | +| --log_level | Choisir parmi: off, critical, error, warning, debug ou trace | +| --log_file | Chemin du fichier de log | +| --log_max_file_size | Taille maximale du fichier de log en Mo avant rotation. | +| --log_max_files | Nombre maximal de fichiers de log. Pour que la rotation des logs soit activée, ces deux paramètres sont nécessaires. | +| --encryption | Si ce flag est présent le chiffrement est activé. | +| --private_key | Chemin du fichier contenant la clé privée. Obligatoire si le chiffrement et le mode reverse sont activés. | +| --public_cert | Chemin du fichier contenant la clé publique. Obligatoire si le chiffrement et le mode reverse sont activés. | +| --ca | Chemin du fichier contenant le certificat de confiance. | +| --ca_name | TLS certificate common name (CN). Ne pas utiliser en cas de doute. | + + + + Les niveaux de logs possibles sont: * off: aucun log * critical: erreurs critiques @@ -376,9 +422,6 @@ Les niveaux de logs possibles sont: * debug: quelques informations sur les connections en plus * trace: le niveau de trace le plus bavard qui permet de voir les messages envoyés et reçus vers le poller -5. Configurez les paramètres de chiffrement. -Le chiffrement est activé par défaut. Dans le cas où l'option **Poller-initiated connection** est activée, renseignez **Max File Size** et **Max number of files**. - diff --git a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md index e55dcec13aba..ff5ddf8c4b9f 100644 --- a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -359,16 +359,20 @@ systemctl restart centagent -1. [Download the CMA installer](https://github.com/centreon/centreon-collect/releases/download/centreon-collect-24.04.6/centreon-monitoring-agent-24.10.0.exe) on every server you want to monitor. +[Download the CMA installer](https://github.com/centreon/centreon-collect/releases/download/centreon-collect-24.04.6/centreon-monitoring-agent-24.10.0.exe) on every server you want to monitor. -2. Start the installer (during the configuration, you can click on the (i) icons for help). + + + + +1. Start the installer (during the configuration, you can click on the (i) icons for help). -3. Configure the endpoint and the connection: +2. Configure the endpoint and the connection: * **Host name in Centreon**. This must be the host name you have defined in the Centreon interface. * In most cases (the agent connects to the poller), you have to enter the poller's endpoint. The correct format is \:port (OpenTelemetry listening port on the poller, usually 4317), for example 192.168.45.32:4317. * In case of a poller-initiated connection (the poller connects to the agent), you have to choose a host interface (0.0.0.0 for all interfaces) and the listening port on which poller will connect, usually 4317. -4. Configure logging options. You can configure two kinds of log output: +3. Configure logging options. You can configure two kinds of log output: * File: the CMA logs into a file * EventLog: the CMA logs in the [event logs page](/docs/alerts-notifications/event-log). @@ -382,9 +386,36 @@ Allowed log levels are: * debug: more information about connections * trace: the most verbose trace level showing messages sent and received to the poller -5. Configure encryption +4. Configure encryption Encryption is activated by default. In case of a poller-initiated connection, the private key file and certificate file are mandatory. + + + + +In this mode no UI is started. As this installer is not a console program, it returns immediately despite he hasn't finished. You have to wait for message telling that all is finished. +If you need to have exit status, you can launch it in a powershell session and wait for exit code. Exit code will be 0 if all isright +| flag | description | +| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| --install_cma | Set this flag if you want to install centreon monitoring agent | +| --install_plugins | Set this flag if you want to install centreon plugins | +| --hostname | The name of the host as defined in the Centreon interface. | +| --endpoint | IP address of DNS name of the poller the agent will connect to. In case of Poller-initiated connection mode, it is the interface and port on which the agent will accept connections from the poller. 0.0.0.0 means all interfaces. The format is (IP or DNS name):(port) | +| --reverse | Add this flag for Poller-initiated connection mode. | +| --log_type | event_log or file. In case of logging in a file, log_file param is mandatory | +| --log_level | can be off, critical, error, warning, debug or trace | +| --log_file | log files path. | +| --log_max_file_size | max file in Mo before rotate. | +| --log_max_files | max number of log files before delete. For the rotation of logs to be active, it is necessary that both parameters 'Max File Size' and 'Max number of files' are set. | +| --encryption | Add this flag for encrypt connection with poller. | +| --private_key | Private key file path. Mandatory if encryption and poller-initiated connection are active. | +| --public_cert | Public certificate file path. Mandatory if encryption and poller-initiated connection are active. | +| --ca | Trusted CA's certificate file path. | +| --ca_name | Expected TLS certificate common name (CN). Don't use it if unsure. | + + + + From a6e58d65116cd12d0dc0673bb1674ac343d92ca2 Mon Sep 17 00:00:00 2001 From: cg-tw <83637804+cg-tw@users.noreply.github.com> Date: Fri, 6 Dec 2024 11:45:36 +0100 Subject: [PATCH 4/4] Update pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md --- .../plugin-packs/getting-started/how-to-guides/cma.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md index ff5ddf8c4b9f..5e6aa89c103e 100644 --- a/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md +++ b/pp/integrations/plugin-packs/getting-started/how-to-guides/cma.md @@ -395,6 +395,7 @@ Encryption is activated by default. In case of a poller-initiated connection, th In this mode no UI is started. As this installer is not a console program, it returns immediately despite he hasn't finished. You have to wait for message telling that all is finished. If you need to have exit status, you can launch it in a powershell session and wait for exit code. Exit code will be 0 if all isright + | flag | description | | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | --install_cma | Set this flag if you want to install centreon monitoring agent |