我无法在Linux环境中停止wildfly 10独立服务器。并使用以下命令:
start: ./standalone.sh (working fine)
stop: ./jboss-cli.sh -c --command=:shutdown (Unable to stop the server)
注意:执行命令后,停止命令在windows env中正常工作:
jboss-cli.bat -c --command=:shutdown(timeout=60)
答案 0 :(得分:2)
如何使用 kill linux命令:
在Cent OS上,这可行:
ps aux | grep wildfly | grep -v grep| awk '{print $2} | xargs kill
答案 1 :(得分:0)
关闭服务器时会出现什么错误?试试:
jboss-cli.sh -c --controller = 127.0.0.1:9999 --command =":shutdown()" --user = $ USER --password = $ PASSWORD