linux - Wildfly 10 Start, Stop Scripts for Standalone -
i unable stop wildfly 10 standalone server in linux env. , using following commands:
start: ./standalone.sh (working fine) stop: ./jboss-cli.sh -c --command=:shutdown (unable stop server)
note: stop command working fine in windows env executing command:
jboss-cli.bat -c --command=:shutdown(timeout=60)
how using kill linux command :
on cent os works :
ps aux | grep wildfly | grep -v grep| awk '{print $2} | xargs kill
Comments
Post a Comment