Categories
- All Categories
- 147 Oracle Analytics News
- 27 Oracle Analytics Videos
- 14.7K Oracle Analytics Forums
- 5.7K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 54 Oracle Analytics Trainings
- 12 Oracle Analytics Data Visualizations Challenge
- 4 Oracle Analytics Career
- 2 Oracle Analytics Industry
- Find Partners
- For Partners
Starting OAS 2023 (7.0.0) server failing
Answers
-
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..
0 -
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..
0 -
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=false
so 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_OPTIONSNote 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>"
0 -
0