Friday 28 February 2014

Installation of Jasper server 5.5 pro in Cent OS


Install jasper server professional edition of 5.5 version.

Installation steps
1. Open the terminal with sudo permission
Eg:
[Sadakar@localhost softwares]$ su
Password:(password)

2. Apply chmod 777 command for jasperreports-server-5.5-linux-x86-installer.run file
Eg:
[Sadakar@localhost softwares]$ chmod 777 jasperreports-server-5.5-linux-x86-installer.run

3. Click on series of Forward buttons to finish the installation.

a. Installation location of jasper server in Cent OS:
/opt/jasperreports-server-5.5

b. Installation location of postgres in Cent OS:
/opt/jasperreports-server-5.5/postgresql

c. How to connect to postgresql from command prompt
/opt/jasperreports-server-5.5/postgresql/bin/./psql
Password: password
postgresql#
databases : \list
connect to database: \c foodmart
show tables : \dt

4. Starting Jasperserver:
You can start the jasperserver in any one of the way sh ctlscript.sh start (or)  ./ ctlscript.sh start
Eg:
[root@localhost jasperreports-server-5.5]# sh ctlscript.sh start

5.Check the Status of the Service
sh ctlscript.sh status

NOTE:
1) You must run the postgresql before you start the jasperserver.
2) By default jasper server run on 8080 port number(tomcat server port number).
3) Default database for jasper server is postgres which runs on 5432 port number.
4) You must check whether the port numbers is opened or not in your machine(hint : Check iptables)

No comments:

Post a Comment