Changeset 33004 for main


Ignore:
Timestamp:
2019-04-09T17:24:00+12:00 (5 years ago)
Author:
ak19
Message:

Same as previous commit which I should have also added to the key force-start-tomcat target instead of just the debug-(force-)start-tomcat. Previous commit message: Recently GS3 tomcat failed to start on windows in a path containing spacse. Kathy discovered the cause was in catalina.opts property being set to contain a catanloup.config filepath that wasn't bookended by quotes. There are some further problems with catalina.opts property line, which I will fix and test incrementally and commit. This commit contains the minimal needed to fix GS3 tomcat server startup on windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/build.xml

    r33003 r33004  
    24162416    <if><bool>
    24172417    <isset property="fedora.maxpermsize"/></bool>
    2418       <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M -Dcantaloupe.config=${basedir}/cantaloupe.properties ${readonly.catalina.opts} ${fedora.maxpermsize}"/>
     2418      <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M -Dcantaloupe.config=&quot;${basedir}/cantaloupe.properties&quot; ${readonly.catalina.opts} ${fedora.maxpermsize}"/>
    24192419      <else>
    2420     <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M -Dcantaloupe.config=${basedir}/cantaloupe.properties ${readonly.catalina.opts}"/>
     2420    <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx800M -Dcantaloupe.config=&quot;${basedir}/cantaloupe.properties&quot; ${readonly.catalina.opts}"/>
    24212421      </else>
    24222422    </if>
Note: See TracChangeset for help on using the changeset viewer.