Mantis - Resin
Viewing Issue Advanced Details
2085 trivial always 10-18-07 12:59 10-24-07 12:09
stbu  
ferg  
normal  
closed 3.1.3  
fixed  
none    
none 3.1.4  
0002085: Inconsistence between resin.conf and resin-admin/cluster.php about <remote-enable>
The resin.conf shipped with resin-3.1.3 contains between lines 13 and 17:

  <!--
     - Management configuration
    -->
  <management path="${resin.root}/admin">
  </management>


The PHP Administration Page "Cluster" (e.g. http://localhost:9080/resin-admin/cluster.php) [^] shows


resin.conf

<resin xmlns='http://caucho.com/ns/resin'> [^]
  <management enable-remote='true'>
  ...
  <cluster id='...'>
    ...
  </cluster>
</resin>


I've updated the resin.conf and added enable-remote='true' but then the restart fails:

14: - Management configuration
15: -->
16: <management path="${resin.root}/admin" enable-remote='true'>
17: </management>

'remote-enable' is expected.

<management> syntax: ( (@path | <path>)?
                     & (@remote-enable | <remote-enable>)?)



Fixing the resin.conf to

  <!--
     - Management configuration
    -->
  <management path="${resin.root}/admin" remote-enable='true'>
  </management>

works.


Please fix this wrong information in cluster.php
resin-pro-3.1.3, Java 6

There are no notes attached to this issue.