Jump to content
We've recently updated our Privacy Statement, available here ×

unable to deploy jasperserver 3.7.1 version


sasi86

Recommended Posts

Dear Team,

      I have downloaded the jasperserver-ce-3.7.1-bin.zip and extract it in the home directory.

      Now I want to use the existing tomcat not a bundled one and also need to use the postgresql.

      I have extract the jasperserver.war into the /var/lib/tomcat5.5/webapps/jasperserver directory.

     I have done the tomcat related configuration.  And access the URL,

                http://192.168.1.184:8180/jasperserver/

     But showing the error that,

 

HTTP Status 404 -


type Status report

message

description The requested resource () is not available.

 

 

What are all the steps need to do for access the jasper server 3.7.1 front end interface. Kindly guide me.  I am not able to follow

the steps which was in the jasperserver install guide.

 

Link to comment
Share on other sites

  • 1 month later...
  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

 I have a similar problem, I downloded jasperserver-ce-3.7.1-windows-installer.exe but it was not able to configure its mysql database correctly. I do not see any relevant documents in the Doc tab, they're all for old versions. Do you have a link?



Post Edited by xargs at 12/24/2010 06:31
Link to comment
Share on other sites

This worked for me:

 cd to the mysql directory in the jasperserver install directory.

 

start mysqld if it's not running with: mysqld

mysql -u root -p

mysql>create database jasperserver character set utf8;

mysql>grant all on *.* to jasperdb@localhost identified by 'password';

mysql>flush privileges;

mysql>use jasperserver;

 

(these source files are in scripts/mysql)

mysql>source jasperserverCreate-mysql.ddl

mysql>source jasperserverCreateDefaultSecurity-mysql.sql

mysql>exit

Link to comment
Share on other sites

The steps listed above are good for 3.7.0/3.7.1.

 

Also, in the Install Guide for 3.7 talks about this in Section 6.4 "Additional Notes on Databases". It is pretty much the same as the above steps. But one thing to keep in mind is that the best place to find the SQL scripts going forward will be inside the set of buildomatic files, like here:

   <js-src>/buildomatic/install_resources/sql/mysql/*.ddl   OR

   <js-install>/buildomatic/install_resources/sql/mysql/*.ddl

The reason I mention this is because the buildomatic "auto-install" scripts are able to support postgresql and mysql (and a bunch of other DBs for Pro). So, all of the scripts found here will always be up to date.

Here is a clip from section 6.4 (<js-install>>/docs/JasperServer-Install-Guide.pdf):

  cd <js-install>/buildomatic/install_resources/sql/mysql
  mysql -u root -p
  mysql>create database jasperserver character set utf8;
  mysql>grant all on *.* to jasperdb@localhost identified by 'password';
  mysql>flush privileges; (reload privilege tables)
  mysql>use jasperserver;
  mysql>source js-pro-create.ddl
  mysql>source quartz.ddl
  mysql>exit

 

I will need to update the older docs on the jasperforge docs area too.

 

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...