JBoss as a windows service
Jon posted in JBoss on July 15th, 2010
The JBoss Community docs for running JBoss as a Windows service are here. They are good instructions until you get to these lines:
# Define listening IP - If you have more than one IP or want to indicate to listen on a specific IP
wrapper.app.parameter.3=-b aaa.bbb.ccc.ddd
That space between the ‘-b’ and the ‘aaa.bbb.ccc.ddd’ causes problems. It should really be:
wrapper.app.parameter.3=-baaa.bbb.ccc.ddd
Leave a Response