当前位置:  开发笔记 > 运维 > 正文

当我无法访问CLI工具时,如何关闭JBoss Wildfly?

如何解决《当我无法访问CLI工具时,如何关闭JBossWildfly?》经验,为你挑选了1个好方法。

我使用Wildfly 10.0.0.CR2和Java 8.我让Wildfly在端口8080上侦听http连接,并且过去使用此命令关闭服务器...

./jboss-cli.sh --connect command=:shutdown

HOwever,偶尔,我无法访问此工具,即使服务器仍在运行.请注意我的Mac下面的交互...

Daves-MacBook-Pro-2:bin davea$ ./jboss-cli.sh --connect command=:shutdown
Failed to connect to the controller: The controller is not available at localhost:9990: java.net.ConnectException: WFLYPRT0023: Could not connect to http-remoting://localhost:9990. The connection timed out: WFLYPRT0023: Could not connect to http-remoting://localhost:9990. The connection timed out
Daves-MacBook-Pro-2:bin davea$ telnet localhost 8080
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

我的问题是,什么是关闭JBoss服务器的万无一失的方法?注意我更喜欢不依赖于CLI工具的方法.



1> teacurran..:

我怀疑它有时无法连接,因为我可以在telnet上看到localhost首先解析为ipv6.你有没有尝试过:

./bin/jboss-cli.sh --connect controller=127.0.0.1:9990 command=:shutdown

除此之外你总是可以杀死PID:

pgrep -d" " -f "wildfly" | xargs kill;

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有