[mod_cluster-dev] How can I invoke MCMP commands via telnet ?

jean-frederic clere jfclere at gmail.com
Mon Dec 15 08:30:48 EST 2008


Bela Ban wrote:
> [mac] /Users/bela/tmp$ telnet linux 8000
> Trying 192.168.1.5...
> Connected to linux.
> Escape character is '^]'.
> DISABLE-APP / HTTP/1.0
> JvmRoute: node2
> Context: /jbossws
> 
> HTTP/1.1 403 Forbidden
> Date: Mon, 15 Dec 2008 13:02:18 GMT
> Server: Apache/2.2.10 (Unix) mod_ssl/2.2.10 OpenSSL/0.9.8i DAV/2 
> mod_jk/1.2.26
> Content-Length: 202
> Connection: close
> Content-Type: text/html; charset=iso-8859-1
> 

That is httpd configuration problems:
In the VirtualHost correspond to 192.168.1.5:8000 you have to add 
something like:
+++
   <Directory />
      Order deny,allow
      Deny from all
      Allow from 10.33.144.
   </Directory>
+++
Replace 10.33.144. by the subnet you want to allow to execute htpd MCMP 
commands. (See http://www.jboss.org/mod_cluster/quick-start.html 3. 
Configure httpd).

Cheers

Jean-Frederic



More information about the mod_cluster-dev mailing list