加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start_example.sh 501 Bytes
一键复制 编辑 原始数据 按行查看 历史
HankXV 提交于 2017-08-24 16:15 . jvm
#!/bin/bash
program_name=YourJarName
rm -rf nohup.out
nohup java -Dfile.encoding=UTF-8 -server -Xmx1g -Xms1g -Xmn512m -XX:MaxMetaspaceSize=256m -XX:+UseConcMarkSweepGC -XX:+ParallelRefProcEnabled -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=75 -XX:+ExplicitGCInvokesConcurrent -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./oom.dump -Xloggc:./logs/GC.log -XX:+PrintGCDateStamps -XX:+PrintGCDetails -jar ${program_name}.jar &
echo $! > ${program_name}.pid
tail -f nohup.out
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化