blob: e0600c740ed35fef4d6adcf86c76b0790ac9dadf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
==============================================================================
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%%-%%JSUPDATE%%-ce.sql
and
- %%JSHOME%%/jasperserverCreateDefaultSecurity-%%DATABASE%%.sql
Take necessary precautions before loading this sql into the %%PORTNAME%% database.
To create the %%JSDB%% database, you may choose to run the following target against
%%SRCDIR%%/%%PORTNAME%%/buildomatic/js-ant
./js-ant create-js-db (Creates the %%JSDB%% database)
If the %%JSDB%% database already exists, you may need to first drop the database:
./js-ant drop-js-db (Drops the %%JSDB%% database)
Alternatively, you may choose to use the following method to create a suitable database:
(mysql) mysql> create database %%JSDB%% character set utf8;
(postgresql) create database %%JSDB%%;
============== W A R N I N G I M P O R T A N T N O T E =================
To upgrade, it is recommended to refer to the Installation Guide found here:
http://community.jaspersoft.com/documentation
============== W A R N I N G I M P O R T A N T N O T E =================
WWW: http://community.jaspersoft.com/project/jasperreports-server
|