Skip to content

Commit

Permalink
update startup.sh & upgrade oracle jdbc to support 12c
Browse files Browse the repository at this point in the history
  • Loading branch information
markluopp committed Apr 19, 2018
1 parent 45519e9 commit a0b9eb4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file removed lib/ojdbc14-10.2.0.3.0.jar
Binary file not shown.
Binary file added lib/ojdbc6.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion manager/deployer/src/main/bin/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ in
esac


str=`file $JAVA_HOME/bin/java | grep 64-bit`
str=`file $JAVA | grep 64-bit`
if [ -n "$str" ]; then
JAVA_OPTS="-server -Xms2048m -Xmx3072m -Xmn1024m -XX:SurvivorRatio=2 -XX:PermSize=96m -XX:MaxPermSize=256m -Xss256k -XX:-UseAdaptiveSizePolicy -XX:MaxTenuringThreshold=15 -XX:+DisableExplicitGC -XX:+UseConcMarkSweepGC -XX:+CMSParallelRemarkEnabled -XX:+UseCMSCompactAtFullCollection -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError"
else
Expand Down
2 changes: 1 addition & 1 deletion node/deployer/src/main/bin/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ in
exit;;
esac

str=`file $JAVA_HOME/bin/java | grep 64-bit`
str=`file $JAVA | grep 64-bit`
if [ -n "$str" ]; then
JAVA_OPTS="-server -Xms2048m -Xmx3072m -Xmn1024m -XX:SurvivorRatio=2 -XX:PermSize=96m -XX:MaxPermSize=256m -Xss256k -XX:-UseAdaptiveSizePolicy -XX:MaxTenuringThreshold=15 -XX:+DisableExplicitGC -XX:+UseConcMarkSweepGC -XX:+CMSParallelRemarkEnabled -XX:+UseCMSCompactAtFullCollection -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError"
else
Expand Down

0 comments on commit a0b9eb4

Please sign in to comment.