From Fedora Project Wiki

(Created page with "{{QA/Test_Case |description= Jenkins start/stop |setup= # Ensure that package jenkins is installed. |actions= # start the server: systemctl start jenkins # open http://localh...")
 
No edit summary
Line 1: Line 1:
{{QA/Test_Case
{{QA/Test_Case
|description= Jenkins start/stop
|description=Starting and stopping Jenkins service.


|setup=
|setup=
# Ensure that package jenkins is installed.
# Ensure that the package <code>jenkins</code> is installed.
|actions=
|actions=
# start the server: systemctl start jenkins
# start Jenkins: <code>systemctl start jenkins</code>
# open http://localhost:8080/jenkins in your web browser
# open http://localhost:8080/jenkins in your web browser
# stop the server: systemctl stop jenkins
# try to click around for awhile, inspect menus, ...
# stop Jenkins: <code>systemctl stop jenkins</code>
|results=
|results=
# you should see server's web interface in your web browser
# you should be able to use Jenkins web interface without any problems
# there shouldn't be any errors
# there shouldn't be any error messages, neither on screen, not in logs
}}
}}

Revision as of 06:49, 3 September 2014

Description

Starting and stopping Jenkins service.

Setup

  1. Ensure that the package jenkins is installed.

How to test

  1. start Jenkins: systemctl start jenkins
  2. open http://localhost:8080/jenkins in your web browser
  3. try to click around for awhile, inspect menus, ...
  4. stop Jenkins: systemctl stop jenkins

Expected Results

  1. you should be able to use Jenkins web interface without any problems
  2. there shouldn't be any error messages, neither on screen, not in logs