目前我有问题。 应用服务器(wildfly 10)经常意外关机。
所以我检查了服务器日志,没有关于关机的信息。
在aws中运行的应用程序(亚马逊网络服务)。
应用程序服务器名称-wildfly 10。
使用putty启动应用程序(远程会话) 服务器启动命令 /usr/share/wildfly/bin/standalone.sh&
一旦我开始,我将关闭腻子。 我在启动命令中放置了& 符号,因此它将在后台运行,但几天后意外关闭并且服务器日志中没有任何内容
提前致谢
答案 0 :(得分:0)
当您在任何基于Unix的操作系统上从命令行启动应用程序时,它将在终端会话关闭时自动终止,除非您告诉操作系统不要这样做:
{
"name": "feathers-offline-realtime",
"main": "index",
"path": "../node_modules/feathers-offline-realtime/lib",
"resources": []
},
{
"name": "feathers-commons",
"main": "index",
"path": "../node_modules/feathers-commons/lib",
"deps": ["utils"],
"resources": []
},
{
"name": "utils",
"main": "index",
"path": "../node_modules/feathers-commons/commons/utils",
"resources": []
},
some-aws-prompt$ nohup /usr/share/wildfly/bin/standalone.sh &
命令是用户退出时“不挂断(电话)”或“无挂断”的缩写。