Project

General

Profile

Wiki » History » Version 6

Ivan Lezhnjov, 11/11/2016 05:15 AM

1 1 Ivan Lezhnjov
h1. postgresql-snap
2
3
This is a collection of "snapcraft recipes":https://github.com/commandprompt/postgresql-snap for PostgreSQL 9.3, 9.4, 9.5 and 9.6 that can be used to create PostgreSQL snap packages. 
4
5
The packages are maintained as a service to the community by Command Prompt, Inc. A PostgreSQL and Linux Professional services company. You can find Command Prompt on the web at https://commandprompt.com
6
7
h1. Get binaries
8
9
If you don't want to build the binaries but instead just want to install the packages, run this command:
10
11
<pre>
12 3 Ivan Lezhnjov
$ sudo snap install postgresql$ver
13 1 Ivan Lezhnjov
</pre>
14
15 3 Ivan Lezhnjov
Where $ver is one of 93, 94, 95 or 96.
16 1 Ivan Lezhnjov
17
h1. Build
18
19
Simply run @snapcraft@ inside any of the postgresql9*/ directories.
20
21
h1. Install
22
23
If you want to install a local snap package run this command:
24
25
<pre>
26
$ sudo snap install --force-dangerous postgresql96_9.6.0_amd64.snap
27
</pre>
28
29
To install from Ubuntu Store simply run:
30
31
<pre>
32
$ sudo snap install postgresql96
33
</pre>
34
35
h1. postgres User
36
37
Traditionally, you would run PostgreSQL as an unprivileged @postgres@ user. This user has to be created manually.
38
39
<pre>
40
$ adduser postgres
41
</pre>
42
43
Beware, that if you already have PostgreSQL installed on your system through an APT/PPA repository, the postgres system account most likely already exists. You must use a different system account in that case. For example, pgsql or postgsql. It can be an arbitrary name: admin, joe, malcolm, etc.
44
45
Do not use an existing postgres system account that was created during PostgreSQL installation from standard Ubuntu, PGDG or custom PPA repositories. If you want to run both snap package and traditional deb version of PostgreSQL, create a new account.
46
47 6 Ivan Lezhnjov
h1. Running Commands
48
49
Note that you need to run PostgreSQL commands such as psql, pg_ctl, postgres, etc. via wrappers that start with a snap package name as prefix. For example, to run pg_dump you would run postgresql96.pgdump, to run dropdb you would run postgresql96.dropdb and so on. This is just how snap packages work (see http://snapcraft.io/docs/core/usage, section "Run snaps”).
50
51
As you can see pg_dump and pg_ctl become $PREFIX.pgdump and $PREFIX.pgctl. The underscore symbol is used as a field separator character in snapcraft.yaml. It has to be substituted with something else. In this case it was simply deleted.
52
53
To get a list of all commands that are available in a package simply run:
54
55
<pre>
56
$ ls /snap/postgresql96/current/*.wrapper
57
</pre>
58
59
Where command-dropdb.wrapper is postgresql96.dropdb and so on.
60
61 1 Ivan Lezhnjov
h1. Cluster Initialization
62
63
As postgres user run
64
65
<pre>
66
$ postgresql96.initialize initdb
67
</pre>
68
69
This will set up your environment, call initdb and create a default cluster.
70
71
To start PostgreSQL server run:
72
73
<pre>
74 5 Ivan Lezhnjov
$ postgresql96.pgctl -D /home/postgres/snap/postgresql96/common/data -l /home/admin/snap/postgresql96/common/logs/logfile start
75 1 Ivan Lezhnjov
</pre>
76
77
Similarly, you can use pg_ctl to run usual commands: stop, restart, status, etc.
78
79
<pre>
80 5 Ivan Lezhnjov
$ postgresql96.pgctl -D /home/postgres/snap/postgresql96/common/data -l /home/admin/snap/postgresql96/common/logs/logfile stop
81 1 Ivan Lezhnjov
</pre>
82
83
<pre>
84 5 Ivan Lezhnjov
$ postgresql96.pgctl -D /home/postgres/snap/postgresql96/common/data -l /home/admin/snap/postgresql96/common/logs/logfile restart
85 1 Ivan Lezhnjov
</pre>
86
87
<pre>
88 5 Ivan Lezhnjov
$ postgresql96.pgctl -D /home/postgres/snap/postgresql96/common/data -l /home/admin/snap/postgresql96/common/logs/logfile status
89 1 Ivan Lezhnjov
</pre>
90
91
h1. Connect To PostgreSQL
92
93
<pre>
94
$ postgresql96.psql -h 127.0.0.1 -d postgres
95
</pre>
96
97 4 Ivan Lezhnjov
h1. Reporting Issues
98
99
We are publicly working on this project and you can join the effort. Submit any bug reports or feature requests in our Redmine "PostgreSQL snap project":https://public.commandprompt.com/projects/pgsql-snap/issues.
100
101 1 Ivan Lezhnjov
h1. Known Problems and Limitations
102
103
Snap format imposes a number of non-critical and more serious limitations:
104
105
* Only one locale is currently supported – en_US.UTF-8.
106
* There is no systemd service file for postgres daemon. PostgreSQL has to be managed manually by using pg_ctl.
107
* pg_ctl is run via a BASH wrapper to make it aware of a default system locale (en_US.UTF-8).
108
* psql is also run via a BASH wrapper to let it successfully write to HISTFILE (.psql_history)
109
* Kerberos, GSSAPI and Bonjour support is disabled.
110
* contrib modules are not included. These do not build due to snapcraft's make plugin inability to handle an included via a relative path Makefile inside another Makefile.
111
112
We intend to eliminate as many of these limitations as possible in future versions of these snapcraft recipes. Most of them are a result of various design decisions made by snapcraft developers that don't work well with how PostgreSQL build process works. However, snapcraft is a young, rapidly developing project and things may change sooner rather than later.