Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
## Enable jconsole
JAVA_OPTS=$JAVA_OPTS -Dcom.sun.management.jmxremote=true
## Enable JMX
JAVA_OPTS=$JAVA_OPTS -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=1089 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.management.jmxremote.password.file=/path/of/password/jmxremote.password -Dcom.sun.management.jmxremote.access.file=/path/of/access/jmxremote.access
Info

Nota,

...

es

...

posible

...

que

...

sea

...

necesario

...

añadir

...

estas

...

2

...

líneas

...

si

...

la

...

máquina

...

tiene

...

varias

...

tarjetas

...

de

...

red,

...

para

...

que

...

el

...

servidor

...

JMX

...

se

...

autoidentifique:

MY_IP=`ifconfig

...

|

...

grep

...

"Bcast"

...

 |

...

awk

...

-F':'

...

'{

...

print

...

$2;

...

}'

...

|

...

awk

...

-F

...

'

...

'

...

'{

...

print

...

$1;

...

}'`

JAVA_OPTS=$JAVA_OPTS

...

-Djava.rmi.server.hostname=$MY_IP

...

Info

El archivo jmxremote.password debe tener sólo acceso de lectura para el usuario nuxeo.

Ejemplo: -rw------- 1 nuxeo nuxeo 2,9K feb 16 12:18 ../jmxremote.password

...