diff --git a/sbin/dm_configure_web_portal.sh b/sbin/dm_configure_web_portal.sh index ba0b31058bc29775a4743e7a308cec880e07c867..6665b06ed8bb5613d9c07859f012bf4559cb5492 100755 --- a/sbin/dm_configure_web_portal.sh +++ b/sbin/dm_configure_web_portal.sh @@ -78,6 +78,9 @@ $ASADMIN_CMD create-jdbc-connection-pool --datasourceclassname org.postgresql.ds echo "Creating JDBC resource $DM_DATA_SOURCE" $ASADMIN_CMD create-jdbc-resource --connectionpoolid ${DM_DB_POOL} ${DM_DATA_SOURCE} +# Remove unsecure access on port 8080 +$ASADMIN_CMD delete-http-listener "http-listener-1" + # test the connection settings echo "Testing connection" $ASADMIN_CMD ping-connection-pool $DM_DB_POOL || exit 1