Beginner here! I have two questions.
Background:
I have installed a program (following their installation instructions) by downloading a .zip
file and then unzipping it, and then deploying it by executing ant deploy
. According to the installation instructions, this deploys my program as a JBOSS AS Service.
Now I want to run the service. According to the user manual of the deployed program, starting the JBoss Application Server will run the service. But the user manual instructs to run a script named run.sh
in <jboss-install-directory>/bin
folder. But there is no script named run.sh
in my <jboss-install-directory>/bin
folder. So I started the JBoss AS using the usual ./standalone.sh
.
Question 1:
What is meant by a JBoss AS SERVICE?
Question 2:
How can I find a list of all services started/run when JBoss AS is started? So that I can confirm that my service has been started.