Changes between Version 26 and Version 27 of epics/Archiver Appliance インストールメモ


Ignore:
Timestamp:
09/11/24 10:56:07 (8 weeks ago)
Author:
shuei
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • epics/Archiver Appliance インストールメモ

    v26 v27  
    353353... 
    354354}}} 
    355 * apache httpdとAJPを使った連携をしない場合は、AJP Connectorの設定をコメントアウトしておく: 
    356 {{{ 
    357 ... 
    358     <!--<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />--> 
     355* apache httpdとAJPを使った連携をする場合は、AJP Connectorの設定のコメントを外し適切に設定する: 
     356{{{ 
     357... 
     358    <!-- 
     359    <Connector port="8009" protocol="AJP/1.3" 
     360... 
     361               redirectPort="8443" 
     362... 
     363               /> 
     364    --> 
    359365... 
    360366}}} 
     
    362368 
    363369=== ${TOMCAT_HOME}/conf/context.xml にMySQLの設定を追加する === 
    364 * 'jdbc/archappl'の設定を追加する: 
     370* <context>に'jdbc/archappl'の設定を追加する: 
    365371{{{ 
    366372... 
    367373<Context> 
    368  
    369     <!-- Default set of monitored resources --> 
    370     <WatchedResource>WEB-INF/web.xml</WatchedResource> 
    371  
     374... 
    372375    <!-- Uncomment this to disable session persistence across Tomcat restarts --> 
    373376    <!-- 
    374377    <Manager pathname="" /> 
    375     --> 
    376  
    377     <!-- Uncomment this to enable Comet connection tacking (provides events 
    378          on session expiration as well as webapp lifecycle) --> 
    379     <!-- 
    380     <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" /> 
    381378    --> 
    382379