summaryrefslogtreecommitdiffstats
path: root/pg_virtualenv.pod
blob: e1e05f0ea7f65b217a9b732d65e825e1572461ee (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
=head1 NAME

pg_virtualenv - Create a throw-away PostgreSQL environment for running regression tests

=head1 SYNOPSIS

B<pg_virtualenv> [I<OPTIONS>] [B<-v> 'I<version ...>'] [I<command>]

=head1 DESCRIPTION

B<pg_virtualenv> creates a virtual PostgreSQL server environment, and sets
environment variables such that I<command> can access the PostgreSQL database
server(s). The servers are destroyed when I<command> exits.

The environment variables B<PGHOST>, B<PGDATABASE>, B<PGUSER>, and
B<PGPASSWORD> will be set. Per default, a single new cluster is created,
using the newest PostgreSQL server version installed. The cluster will use the
first available port number starting from B<5432>, and B<PGPORT> will be set.
B<PGVERSION> is set the the PostgreSQL major version number.

When clusters for more than one versions are created, they will differ in the
port number used, and B<PGPORT> and B<PGVERSION> are not set. The clusters are
named I<version>/regress. To access a cluster, set
B<PGCLUSTER=>I<version>B</regress>. For ease of access, the clusters are also
registered in F</etc/postgresql-common/pg_service.conf>, with the version
number as cluster name. Clusters can be accessed by passing the connection
string "B<service=>I<version>", e.g. B<psql service=9.2>.

When invoked as root, the clusters are created in F</etc/postgresql/> as usual;
for other users, B<PG_CLUSTER_CONF_ROOT> and B<PGSYSCONFDIR> are
set to a temporary directory where all files belonging to the clusters are
created.

If I<command> fails, the tail of the PostgreSQL server log is shown.
Additionally, if B<gdb> is available, the backtrace from any PostgreSQL
coredump is show.

=head1 OPTIONS

=over 4

=item B<-a>

Use all PostgreSQL server versions installed.

=item B<-v> I<version ...>

Use these versions (space-separated list).

=item B<-c> I<pg_createcluster options>

Extra options to pass to B<pg_createcluster>.

=item B<-i> I<initdb options>

Extra initdb options to pass to B<pg_createcluster>.

=item B<-o> I<guc>B<=>I<value>

Configuration option to set in the C<postgresql.conf> file, passed to
B<pg_createcluster>.

=item B<-p> I<package>

Set B<extension_destdir> and B<dynamic_library_path> in cluster to enable
loading and testing extensions at build-time from B<debian/>I<package>B</>.

This is a Debian-specific PostgreSQL patch.

=item B<-s>

Launch a shell inside the virtual environment when I<command> fails.

=item B<-t>

Install clusters in a temporary directory, even when running as root.

=item B<-h>

Show program help.

=back

=head1 EXAMPLE

  # pg_virtualenv make check

=head1 NOTES

When run with fakeroot(1), B<pg_virtualenv> will fall back to the non-root mode
of operation. Running "fakeroot pg_virtualenv" as root will fail, though.

=head1 ENVIRONMENT

=over 4

=item B<PG_VIRTUALENV_NEWPID>=yes

When non-empty, B<pg_virtualenv> will re-exec itself using newpid(1).

=item B<PG_VIRTUALENV_UNSHARE>=I<flags>

When non-empty, B<pg_virtualenv> will re-exec itself using unshare(1) using
these flags.

=item B<PGPORT>=I<n>

When set, the value is used for the (single) cluster created.

=back

=head1 COMPATIBILITY

B<PGVERSION> is set in postgresql-common (>= 219~).

=head1 SEE ALSO

initdb(1), pg_createcluster(1).

=head1 AUTHOR

Christoph Berg L<E<lt>myon@debian.orgE<gt>>