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 |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{QA/Test_Case | {{QA/Test_Case | ||
|description= Jenkins | |description=Starting and stopping Jenkins service. | ||
|setup= | |setup= | ||
# Ensure that package jenkins is installed. | # Ensure that the package <code>jenkins</code> is installed and version is 1.581: | ||
#* rpm -q jenkins | |||
|actions= | |actions= | ||
# start | # start Jenkins: <code>systemctl start jenkins</code> | ||
# open http://localhost:8080 | # open http://localhost:8080 in your web browser | ||
# stop | # try to click around for awhile, inspect menus, ... | ||
# stop Jenkins: <code>systemctl stop jenkins</code> | |||
|results= | |results= | ||
# you should | # you should be able to use Jenkins web interface without any problems | ||
# there shouldn't be any | # there shouldn't be any error messages or stacktraces printed on a screen | ||
}} | }} |
Latest revision as of 04:51, 30 September 2014
Description
Starting and stopping Jenkins service.
Setup
- Ensure that the package
jenkins
is installed and version is 1.581:- rpm -q jenkins
How to test
- start Jenkins:
systemctl start jenkins
- open http://localhost:8080 in your web browser
- try to click around for awhile, inspect menus, ...
- stop Jenkins:
systemctl stop jenkins
Expected Results
- you should be able to use Jenkins web interface without any problems
- there shouldn't be any error messages or stacktraces printed on a screen