From d82e092f67d90efed92876d92d6e5a7af7e0eb8e Mon Sep 17 00:00:00 2001 From: Yacine31 Date: Wed, 19 Nov 2025 17:54:07 +0100 Subject: [PATCH] correction export ORACLE_HOME --- sh/10_oracle_installation.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/sh/10_oracle_installation.sh b/sh/10_oracle_installation.sh index 70f8819..14d8f36 100644 --- a/sh/10_oracle_installation.sh +++ b/sh/10_oracle_installation.sh @@ -53,6 +53,7 @@ ps -ef | grep tnslsnr | grep -v grep | while read -r l; do if [ -n "$binary_path" ] && [ -n "$listener_name" ]; then export TNS_ADMIN="$binary_path/network/admin" + export ORACLE_HOME="$binary_path" print_h2 "Statut du listener : ${listener_name}" lsnrctl_command="$binary_path/bin/lsnrctl status $listener_name" run_and_print "$lsnrctl_command"