From c02068ac285506c704368b21444389f6cb3ae094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Guti=C3=A9rrez=20Herrera?= Date: Thu, 30 Jan 2025 10:36:52 +0100 Subject: [PATCH 1/2] Minor fix in log error messages about missing required domain security properties. --- .../12.2.1.4/container-scripts/createOrStartInfraDomain.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh b/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh index 21197ec433..b6fa884874 100644 --- a/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh +++ b/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh @@ -93,21 +93,21 @@ then # Get Database Username DB_USER=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_user | cut -d "=" -f2` if [ -z "$DB_USER" ]; then - echo "The domain username is blank. The Admin username must be set in the properties file." + echo "The database username is blank. The Admin username must be set in the properties file." exit fi # echo "Database Username $DB_USER" # Get Database Password DB_PASS=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_pass | cut -d "=" -f2` if [ -z "$DB_PASS" ]; then - echo "The domain password is blank. The Admin password must be set in the properties file." + echo "The database password is blank. The Admin password must be set in the properties file." exit fi # echo "Database Password $DB_PASS" # Get databasse Schema Password DB_SCHEMA_PASS=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_schema | cut -d "=" -f2` if [ -z "$DB_SCHEMA_PASS" ]; then - echo "The databse schema password is blank. The database schema password must be set in the properties file." + echo "The database schema password is blank. The database schema password must be set in the properties file." exit fi # echo "Database Schema Password: $DB_SCHEMA_PASS" From bd8ac27f547bda05a9696894d4bca27be00c4425 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Guti=C3=A9rrez=20Herrera?= Date: Thu, 30 Jan 2025 10:46:21 +0100 Subject: [PATCH 2/2] Minor fix in log error messages about missing required domain security properties. --- .../12.2.1.4/container-scripts/createOrStartInfraDomain.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh b/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh index b6fa884874..3c271c88be 100644 --- a/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh +++ b/OracleFMWInfrastructure/dockerfiles/12.2.1.4/container-scripts/createOrStartInfraDomain.sh @@ -93,14 +93,14 @@ then # Get Database Username DB_USER=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_user | cut -d "=" -f2` if [ -z "$DB_USER" ]; then - echo "The database username is blank. The Admin username must be set in the properties file." + echo "The database username is blank. The database username must be set in the properties file." exit fi # echo "Database Username $DB_USER" # Get Database Password DB_PASS=`awk '{print $1}' $SEC_PROPERTIES_FILE | grep db_pass | cut -d "=" -f2` if [ -z "$DB_PASS" ]; then - echo "The database password is blank. The Admin password must be set in the properties file." + echo "The database password is blank. The database password must be set in the properties file." exit fi # echo "Database Password $DB_PASS"