Displaying 2 results from an estimated 2 matches for "djboss".
Did you mean:
jboss
2013 Mar 13
2
How to add a new line at a particular place in a file..
...file..
if [ "x$JAVA_OPTS" = "x" ]; then
JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=256m
-Djava.net.preferIPv4Stack=true -Dorg.jboss.resolver.warning=true
-Dsun.rmi.dgc.client.gcInterval=3600000
-Dsun.rmi.dgc.server.gcInterval=3600000
JAVA_OPTS="$JAVA_OPTS
-Djboss.modules.system.pkgs=$JBOSS_MODULES_SYSTEM_PKGS
-Djava.awt.headless=true"
JAVA_OPTS="$JAVA_OPTS -Djboss.server.default.config=standalone.xml"
This a part of file and i want to add --
-Djboss.socket.binding.port-offset=900" -- after 3600000 in the 3rd
line..through puppet o...
2012 Sep 03
2
Class for transfering files from Server to Client
..., a new standalone and domain model
has been introduced. In this tutorial, we focus on starting up a standalone
server. The domain server will be part of a future tutorial.
Startup a JBoss 7, standalone instance:
A standalone instance of JBoss 7 can be starting by executing:
$ ./standalone.sh -Djboss.bind.address=0.0.0.0
-Djboss.bind.address.management=0.0.0.0&
============================================================
[/code]
Now I want to execute those steps through puppet.
I started writing class under init.pp to put it through simple way:
Creating JBOSS User and Group
[code]
#...