Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Starting OAS 2023 (7.0.0) server failing

Received Response
80
Views
14
Comments
2»

Answers

  • Rank 5 - Community Champion

    As per doc 2308193.1,

    I have added to both

    export JAVA_OPTIONS="-Doracle.jdbc.fanEnabled=false <other-options>"

    export CONFIG_JVM_ARGS="-Doracle.jdbc.fanEnabled=false <other-options>"

    before starting config.sh..

    However I have observed it is not taking effect..

    -

    Do we need to do something additional with setDomainEnv ?

    How, plz suggest..

  • Rank 5 - Community Champion

    @BrandonH

    Also validated that we have a file "${DOMAIN_HOME}/bin/setDomainEnv.sh" in the setup, but we are not calling it..

    After RCU creation, we are calling "$ORACLE_HOME/bi/bin/config.sh", and I made sure to export the both variables as mention in last comment..

    But why it is not in effect, in logs still that option -Doracle.jdbc.fanEnabled=false is not shown as mentioned in doc 2308193.1

    Kindly suggest..

  • Rank 5 - Community Champion
    edited February 27

    Couple things, the DocID you mention talks about the problem only in relation to generic weblogic. This is clear also because the file they talk about is: setDomainEnv.sh and not the OAS file setStartupEnv.sh. If the thought is this doc is the most relevant to the issue we have to modify the idea of the document to fit how OAS does things.

    If you open setDomainEnv.sh the first comments at the top of the file says:

    WARNING: This file is created by the Configuration Wizard.
    Any changes to this script may be lost when adding extensions to this configuration.

    So is the file being overwritten? And are you sure the parameter would even be used if its not?

    Regardless, you should probably use setStartupEnv.sh where we know the java_options will be applied if we set the parameters in the correct lines.

    I dont think there is any risk in applying the parameter -Doracle.jdbc.fanEnabled=falseso you should ensure it gets added to both the AdminServer and bi_server1.

    In setStartupEnv.sh find this section and add it at the end of the java_options line inside the quotes:

    Then do the same for the BISUITE-MAN-SRV section:

    If we need to use setDomainEnv.sh the format for modifying the JAVA_OPTIONS is like this always:

    JAVA_OPTIONS="${JAVA_OPTIONS} ${JAVA_PROPERTIES}"
    export JAVA_OPTIONS

    Note that it always keeps the previous value and adds to it. So the way you have it:

    export JAVA_OPTIONS="-Doracle.jdbc.fanEnabled=false <other-options>"

    make sure you add back in whatever previously needs to be there like this:

    export JAVA_OPTIONS="${JAVA_OPTIONS} -Doracle.jdbc.fanEnabled=false <other-options>"

  • Rank 5 - Community Champion

    @BrandonH

    This is very detailed.. Thanks..

    I will try this…

Welcome!

It looks like you're new here. Sign in or register to get started.