如何使用命令/脚本检查WildFly服务器是否已成功启动?

时间:2018-02-09 09:12:33

标签: wildfly jboss-eap-7

我想编写一个脚本来管理WildFly的启动和部署,但我现在遇到了麻烦。要检查服务器是否已启动,我找到了命令

./jboss-cli.sh -c command=':read-attribute(name=server-state)' | grep running

但是当服务器启动时,由于控制器不可用,./jboss-cli.sh -c无法连接并返回错误。

有没有更好的方法来检查WildFly是否完全启动?

1 个答案:

答案 0 :(得分:4)

我找到了更好的解决方案。命令是

netstat -an | grep 9990 | grep LISTEN

在WildFly准备接受管理命令之前检查管理端口(9990)状态。

之后,使用./jboss-cli.sh -c command=':read-attribute(name=server-state)' | grep running检查服务器是否已启动。更改端口 如果管理端口配置不是默认的9990。

这是我的开始&部署脚本,这个想法会不断检查,直到服务器启动。

然后,使用jboss-cli命令部署我的应用程序。只需将日志打印到屏幕上,因此不需要使用另一个shell来拖尾日志文件。

#!bin/sh
totalRow=0
printLog(){ #output the new log in the server.log to screen
    local newTotal=$(awk 'END{print NR}' ./standalone/log/server.log) #quicker than wc -l
    local diff=$(($newTotal-$totalRow))
    tail -n $diff ./standalone/log/server.log
    totalRow=$newTotal
}

nohup bin/standalone.sh>/dev/null 2>&1 &
echo '======================================== Jboss-eap-7.1 is starting now ========================================'
while true #check if the port is ready
do  
    sleep 1
    if netstat -an | grep 9990 | grep LISTEN
        then
        printLog
        break
    fi
    printLog
done
while true  #check if the server start success
do  
    if bin/jboss-cli.sh --connect command=':read-attribute(name=server-state)' | grep running
    then
        printLog
        break
    fi
    printLog
    sleep 1
done
echo '======================================== Jboss-eap-7.1 has started!!!!!! ========================================'
bin/jboss-cli.sh --connect command='deploy /bcms/jboss-eap-7.1/war/myApp.war' &
tail -f -n0 ./standalone/log/server.log