mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
- fix postgresql properties file installation - add postgresql 9.x support PR: ports/159094 Submitted by: Jason Helfman <jhelfman _at_ experts-exchange.com> (maintainer)
40 lines
1.5 KiB
Text
40 lines
1.5 KiB
Text
==============================================================================
|
|
|
|
To use this software package, you need to properly configure and enable an
|
|
application and database server. These components need to be enabled,
|
|
respectively, in /etc/rc.conf.
|
|
|
|
The %%DATABASE%% schema and default security credentials have been copied to:
|
|
|
|
- %%JSHOME%%/js-create.ddl
|
|
- %%JSHOME%%/quartz.ddl
|
|
- %%JSHOME%%/upgrade-%%DATABASE%%-4.0.0-4.1.0-ce.sql
|
|
and
|
|
- %%JSHOME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
|
|
|
|
Take necessary precautions before loading this sql into the %%PORTNAME%% database.
|
|
|
|
To create the %%PORTNAME%% database, you may choose to run the following target against
|
|
%%SRCDIR%%/%%PORTNAME%%/buildomatic/js-ant
|
|
|
|
./js-ant create-js-db (Creates the %%PORTNAME%% database)
|
|
|
|
If the %%PORTNAME%% database already exists, you may need to first drop the database:
|
|
./js-ant drop-js-db (Drops the %%PORTNAME%% database)
|
|
|
|
Alternatively, you may choose to use the following method to create a suitable database:
|
|
(mysql) mysql> create database jasperserver character set utf8;
|
|
(postgresql) create database jasperserver;
|
|
|
|
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
If UPGRADING from 4.0.0 to 4.1.0:
|
|
(taken from release notes of 4.1.0 from vendor)
|
|
|
|
To upgrade from 4.0.0 to 4.1.0, refer to the recommended
|
|
procedure described in the Installation Guide Chapter 8
|
|
"Upgrade from 4.0.0 to 4.1.0"
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
WWW: http://jasperforge.org/projects/jasperserver
|