blob: 20b75bd3e81466d33327016fc1534e188f55166b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[
{ type: install
message: <<EOM
Create a database:
==================
% sudo -H -u postgres psql --command 'CREATE DATABASE pgroonga_test'
(Normally, you should create a user for pgroonga_test database and use the user.
See GRANT USAGE ON SCHEMA pgroonga for details.)
Connect to the created database and execute CREATE EXTENSION pgroonga:
======================================================================
% sudo -H -u postgres psql -d pgroonga_test --command 'CREATE EXTENSION pgroonga;'
EOM
}
]
|