标签:server manage cat jmx bin out ash bash arc
1.java 命令启动
nohup java -Dlocalcfg=true -Dcom.sun.management.jmxremote.port=9998 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management .jmxremote.authenticate=false -Djava.rmi.server.hostname=192.168.221.32 -jar ${runPATH} >> $logPath/fbs-online-search.out &
一行不可以有换行符
2.tomcat启动
#!/bin/bash pkill -9 -f $(pwd) sleep 2 export JAVA_OPTS="-Xms4072m -Xmx4072m -XX:MaxPermSize=512m -Xss256k -Djava.rmi.server.hostname=192.168.221.32 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=7199 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false" ./bin/shutdown.sh sleep 2
正常的run.sh脚本中加入如下
JAVA_OPTS="-Dcom.sun.management.jmxremote.port=9998 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Djava.rmi.server.hostname=192.168.58.164"
标签:server manage cat jmx bin out ash bash arc
原文地址:http://www.cnblogs.com/xianlai-huang/p/5997098.html