1 | # ---------------------------------------------------------------------
|
---|
2 | # settings.properties
|
---|
3 | #
|
---|
4 | # PetaScope configuration file
|
---|
5 | #
|
---|
6 | # Important note:
|
---|
7 | # Parameters marked "yes" in item "need to adapt" MUST be configured
|
---|
8 | # to meaningful values during installation, they CAN NOT be used as is!
|
---|
9 | # ---------------------------------------------------------------------
|
---|
10 |
|
---|
11 | # parameter: metadata_driver
|
---|
12 | # purpose: name of DBMS driver to be loaded
|
---|
13 | # need to adapt: no
|
---|
14 | metadata_driver=org.postgresql.Driver
|
---|
15 |
|
---|
16 | # parameter: metadata_url
|
---|
17 | # purpose: JDBC URL of database serving PetaScope metadata
|
---|
18 | # recommendation: use default values on a default Postgresql
|
---|
19 | # installation, and DB name petascopedb
|
---|
20 | # need to adapt: yes
|
---|
21 | metadata_url=jdbc:postgresql://localhost:5432/petascopedb
|
---|
22 | # parameter: metadata_user
|
---|
23 | # purpose: DBMS login under which servlet has r/w access
|
---|
24 | # to PetaScope metadata;
|
---|
25 | # recommendation: establish a dedicated user
|
---|
26 | # need to adapt: yes
|
---|
27 | metadata_user=petauser
|
---|
28 |
|
---|
29 | # parameter: metadata_pass
|
---|
30 | # purpose: password for DBMS login, as above
|
---|
31 | # need to adapt: yes
|
---|
32 | metadata_pass=petapasswd
|
---|
33 |
|
---|
34 | # parameter: rasdaman_url
|
---|
35 | # purpose: URL of rasdaman database serving PetaScope raster data
|
---|
36 | # need to adapt: yes
|
---|
37 | rasdaman_url=http://localhost:7001
|
---|
38 |
|
---|
39 | # parameter: rasdaman_database
|
---|
40 | # purpose: name of rasdaman database serving PetaScope raster data
|
---|
41 | # recommendation: use rasdaman standard name, RASBASE
|
---|
42 | # need to adapt: no
|
---|
43 | rasdaman_database=RASBASE
|
---|
44 |
|
---|
45 | # parameter: rasdaman_user
|
---|
46 | # purpose: username to access rasdaman
|
---|
47 | # need to adapt: no
|
---|
48 | rasdaman_user=rasguest
|
---|
49 |
|
---|
50 | # parameter: rasdaman_pass
|
---|
51 | # purpose: password to access rasdaman
|
---|
52 | # need to adapt: no
|
---|
53 | rasdaman_pass=rasguest
|
---|
54 |
|
---|
55 | # parameter: rasdaman_admin_user
|
---|
56 | # purpose: admin username to access rasdaman
|
---|
57 | # need to adapt: no
|
---|
58 | rasdaman_admin_user=rasadmin
|
---|
59 |
|
---|
60 | # parameter: rasdaman_rasadmin_pass
|
---|
61 | # purpose: admin password to access rasdaman
|
---|
62 | # need to adapt: no
|
---|
63 | rasdaman_admin_pass=rasadmin
|
---|
64 |
|
---|
65 | # parameter: rasdaman_retry_attempts
|
---|
66 | # purpose: maximum re-connect attempts to a rasdaman server in case a connection fails.
|
---|
67 | # need to adapt: no
|
---|
68 | rasdaman_retry_attempts=5
|
---|
69 |
|
---|
70 | # parameter: rasdaman_retry_timeout
|
---|
71 | # purpose: wait time in seconds between re-connect attempts to a rasdaman server
|
---|
72 | # need to adapt: no
|
---|
73 | rasdaman_retry_timeout=10
|
---|
74 |
|
---|
75 | # parameter: rasdaman_version
|
---|
76 | # purpose: rasdaman version
|
---|
77 | # need to adapt: yes
|
---|
78 | rasdaman_version=8.3
|
---|
79 |
|
---|
80 | # parameter: xml_validation
|
---|
81 | # purpose: control of the XML Schema Validator at first request
|
---|
82 | # need to adapt: yes
|
---|
83 | xml_validation=false
|
---|