2017-04-14 150 views
1

我無法停止Linux Env​​中的wildfly 10獨立服務器。並使用以下命令:Wildfly 10啓動,停止獨立腳本

start: ./standalone.sh (working fine) 
stop: ./jboss-cli.sh -c --command=:shutdown (Unable to stop the server) 

注:停止命令窗口ENV工作正常通過執行以下命令:

jboss-cli.bat -c --command=:shutdown(timeout=60) 
+0

你有沒有嘗試添加你知道在Windows上運行的'timeout'參數? – MTCoster

+0

是的,但它顯示錯誤爲「意外字符」('「後添加超時值,我試圖用」<「符號轉義,但仍存在問題 –

+0

$ ./jboss-cli.sh -c --command = :shutdown <(timeout = 10) 'shutdown/dev/fd/63'不是一個有效的操作名稱 –

回答

0

什麼錯誤/ s的你正在同時關停服務器?

jboss-cli.sh -c --controller = 127.0.0.1:9999 --command = 「:關閉()」 --user = $ USER = --password PASSWORD $

與嘗試
1

如何使用殺 linux命令:

分上OS這個工程:

ps aux | grep wildfly | grep -v grep| awk '{print $2} | xargs kill 
+0

謝謝@Jitsonfire。但是任何關於從Wildfly提供的腳本停止服務器的建議? –