From Fedora Project Wiki

m (Created page with "{{QA/Test_Case |description=Testing JBoss AS installation procedure and basic management tasks |setup=Don't forget to install latest updates! |actions= # <code>yum install jboss-...")
 
mNo edit summary
Line 9: Line 9:
# <code>systemctl status jboss-as.service</code>
# <code>systemctl status jboss-as.service</code>
|results=
|results=
The following must be true to consider this a successful test run. Be brief ... but explicit.
# Step #1 completes without error
# Step #1 completes without error
# Step #2 starts the service, check with <code>ps ax</code>, try <code>curl http://localhost:8080</code>
# Step #2 starts the service, check with <code>ps ax</code>, try <code>curl http://localhost:8080</code>

Revision as of 09:37, 14 April 2012

Description

Testing JBoss AS installation procedure and basic management tasks

Setup

Don't forget to install latest updates!

How to test

  1. yum install jboss-as --enablerepo=updates-testing
  2. systemctl start jboss-as.service
  3. systemctl status jboss-as.service
  4. systemctl stop jboss-as.service
  5. systemctl status jboss-as.service

Expected Results

  1. Step #1 completes without error
  2. Step #2 starts the service, check with ps ax, try curl http://localhost:8080
  3. Step #3 return info about the service being in active (running) state
  4. Step #4 stops the service, check with ps ax. There must not be any java process left.
  5. Step #5 return info about the service being in inactive (dead) state