Skip to content

Commit 5857df9

Browse files
committed
Added explanation how to create extensions inside ga_propagation database.
1 parent 752a7bb commit 5857df9

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ If PostgreSQL has not been installed yet, it needs to be done before running. Th
1717

1818
After PostgreSQL has been installed, it is necessary to create a database that will be used by the tool. For compatibility with pleak-backend, the database name should be 'ga_propagation'. Permissions on 'ga_propagation' should be given to the user 'ga_propagation', whose password is the same as used inside "pleak-tools/pleak-backend/src/main/java/com/naples/rest/GuessingAdvantageService.java", which is 'ceec4eif7ya' by default. If any other database or user names are used, they should be changed in "GuessingAdvantageService.java" as well. Here is an example of how to do it with Ubuntu system:
1919

20+
1. Create the ga_propagation user.
21+
2022
USERNAME@xxxx:~$ sudo -u postgres -i
2123
(prompts USERNAME's password)
2224
postgres@xxxx:~$ createuser --interactive --pwprompt
@@ -27,10 +29,19 @@ After PostgreSQL has been installed, it is necessary to create a database that w
2729
Shall the new role be allowed to create databases? (y/n) n
2830
Shall the new role be allowed to create more new roles? (y/n) n
2931

32+
2. Create the ga_propagation database.
33+
3034
postgres@xxxx:~$ psql
3135
postgres=# create database ga_propagation;
3236
CREATE DATABASE
33-
USERNAME=# \q
37+
postgres=# \c ga_propagation
38+
You are now connected to database "ga_propagation" as user "postgres".
39+
40+
ga_propagation=# create extension cube;
41+
CREATE EXTENSION
42+
ga_propagation=# create extension earthdistance;
43+
CREATE EXTENSION
44+
ga_propagation=# \q
3445

3546
The tool assumes that the contents of input tables are uploaded to the database by some other application. The example runs will fail if there is no suitable data, i.e. no tables specified in the input schema file.
3647

0 commit comments

Comments
 (0)