博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
glassfish4系统启动脚本
阅读量:6212 次
发布时间:2019-06-21

本文共 1132 字,大约阅读时间需要 3 分钟。

glassfish4系统启动脚本,你就是使用如下方式启动:

$ service glassfish start

启动脚本

  • 启动glassfish4的文件实例 :

set -eASADMIN=/usr/local/glassfish4/bin/asadmincase "$1" instart)        echo -n "Starting GlassFish server: glassfish"        # Increase file descriptor limit:        ulimit -n 32768        # Allow "memory overcommit":        # (basically, this allows to run exec() calls from inside the        # app, without the Unix fork() call physically hogging 2X        # the amount of memory glassfish is already using)        echo 1 > /proc/sys/vm/overcommit_memory        #echo        #echo "GLASSFISH IS UNDER MAINTENANCE;"        #echo "PLEASE DO NOT USE service init script."        #echo                LANG=en_US.UTF-8; export LANG        $ASADMIN start-domain domain1        echo "."        ;;          stop)        echo -n "Stopping GlassFish server: glassfish"        #echo        #echo "GLASSFISH IS UNDER MAINTENANCE;"        #echo "PLEASE DO NOT USE service init script."        #echo        $ASADMIN stop-domain domain1        echo "."        ;;          *)        echo "Usage: /etc/init.d/glassfish {start|stop}"        exit 1        esacexit 0

转载地址:http://zccja.baihongyu.com/

你可能感兴趣的文章
服务(2)====一个lamp的脚本以及基于lamp安装wordpress
查看>>
IDC:预计2018年全球物联网支出将达7725亿美元
查看>>
中文版svn插件+MyEclipse插件
查看>>
Exchange 2013诡异问题解决过程分享
查看>>
Apple Watch 2猜测汇总:或明年上市 或新增摄像头
查看>>
zabbix----4-----监控mysql
查看>>
打造属于自己的设计模式
查看>>
RHEL 6.5 安装 grid 报错:缺少 libcap.so.1
查看>>
Entity Data Model (EDM) 深入分析, Part 1
查看>>
一波三折:交换机升级过程故障排除实例
查看>>
jqzoom实战
查看>>
oracle undo表空间与redo日志
查看>>
DHCP详细配置实验总结
查看>>
mysql主从监控脚本:
查看>>
[Three.js]WebGL心形效果
查看>>
Inotify自动监控并且同步到服务器的脚本
查看>>
DAVINCI DM3730开发攻略——应用程序例程分析
查看>>
cacti 插件的安装及综合应用
查看>>
硬盘知识大杂烩(五)
查看>>
shell学习笔记(四)shell控制流结构
查看>>