Introduction
As an alternative to my article on Deploying BIRT on JBoss, this article will cover BIRT and Tomcat.
Background information on BIRT and the usefulness of hosting BIRT reports on a central server is covered in that prior article.
Tomcat
Installing Tomcat
I'm using a CentOS 5.5 server for this article.
Installation of Tomcat is quite straightforward with yum
:
Configuring Tomcat
Configuring Tomcat is just as simple as its installation. The only item I had to complete was to add an admin user. I did this by editing the file /etc/tomcat5/tomcat-users.xml
file and adding the following line:
Note, please pick a better password.
The admin panel of Tomcat can now be accessed via http://192.168.255.2:8080/admin
or whatever your server's IP address or hostname is.
BIRT
Installing Java
I found that the latest version of BIRT would not run without Java 1.6 installed.
I downloaded the Java 1.6 JDK from its homepage. The exact file name was jdk-6u24-linux-i586-rpm.bin
.
When the download finishes, run the file as a shell script:
This installs the various Java components as RPM packages.
Next, edit /etc/sysconfig/tomcat5
and change the JAVA_HOME
environment variable to /usr/java/jdk1.6.0_24/
Installing the BIRT Viewer
The BIRT Viewer can be downloaded from here as the Runtime package. Once it has downloaded, unzip the package and then copy the WebViewerExample
directory to /var/lib/tomcat5/webapps
as birt
:
Also make sure that the birt
directory has the correct permissions for the user running the Tomcat server – in this case, tomcat
:
Next, restart Tomcat
Finally, make sure BIRT is running by accessing the Tomcat Manager page at http://192.168.255.2:8080/manager/html
. If it is, you can access the BIRT Viewer at http://192.168.255.2:8080/birt
.
Deploying Reports
Once the BIRT Viewer is working, you can now copy reports to the server anywhere under the /var/lib/tomcat5/webapps/birt
directory and view them online through the URL http://192.168.255.2:8080/birt/frameset?__report=whatever.rptdesign
. I usually put all reports under the existing /var/lib/tomcat5/webapps/report
directory and then access the report through http://192.168.255.2:8080/birt/frameset?__report=report/whatever.rptdesign
.
Enabling JDBC Access
If the data of your reports is located in a database, you will need to install the appropriate JDBC driver for BIRT. I'll use MySQL for this example.
You can get the MySQL JDBC driver from here.
Once the download is finished, copy the mysql-connector-java-3.1.14-bin.jar
file to BIRT:
Note, depending on the version of BIRT being used, the actual destination directory could be different. I use the following method to find the right destination:
Conclusion
This article covered an alternative configuration to the article Deploying BIRT on JBoss by using Tomcat instead of JBoss.