Version information
This version is compatible with:
Start using this module
Add this module to your Puppetfile:
mod 'factorit-jasperreports_server', '0.0.13'
Learn more about managing modules with a PuppetfileDocumentation
jasperreports_server
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Usage - Configuration options and additional functionality
- Limitations - OS compatibility, etc.
Overview
Retrieves and Installs JasperReports server from a named source. This module is a fork of https://github.com/arineng/arin-jasperreports_server but is based on Ubuntu instead of CentOS. In contrast to the original plugin, it installs the prerequisites like a database server and tomcat server too.
Module Description
Builds and Configures JasperReports server via the WAR deployment methodology.
This is done by using the build-0-matic js-install minimal execution policy that references a generated default_master.properties file
The WAR is then copied to the specified application server reference in default_master.properties
Usage
If not specified will obtain the source from sourceforge referncing the pkg_verison given
class { '::jasperreports_server':
pkg_version => '1.6.0',
}
Starting Jasper Reporting Server
sudo /opt/apache-tomcat/bin/shutdown.sh
sudo /opt/apache-tomcat/bin/startup.sh
After you have started the server, use the reporting server at the following location: http://{your_ip}:8080/jasperserver/login.html
username: jasperadmin pasword: jasperadmin
Limitations
- Ubuntu 14.04 only
- Currently only MySQL (application) database implementation
Further documentation
Dependencies
- puppetlabs/stdlib (>=3.2.0)
- puppet/archive (>=0.3.0)
- maestrodev/wget (>=1.7.0)
- puppetlabs-apt (>=2.3.0)
- puppetlabs-java (>=1.6.0)
- puppetlabs-tomcat (>=1.6.0)
- puppetlabs-mysql (>=3.9.0)
- puppetlabs-postgresql (>=4.8.0)
- puppet-mysql_java_connector (>=2.2.0)
MIT License Copyright (c) 2016 Joep Brunsveld Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.