docs: Updated instructions re: Postgresql setup
[mediagoblin.git] / docs / source / siteadmin / deploying.rst
1 .. MediaGoblin Documentation
2
3 Written in 2011, 2012, 2013 by MediaGoblin contributors
4
5 To the extent possible under law, the author(s) have dedicated all
6 copyright and related and neighboring rights to this software to
7 the public domain worldwide. This software is distributed without
8 any warranty.
9
10 You should have received a copy of the CC0 Public Domain
11 Dedication along with this software. If not, see
12 <http://creativecommons.org/publicdomain/zero/1.0/>.
13
14 .. _deploying-chapter:
15
16 =====================
17 Deploying MediaGoblin
18 =====================
19
20 GNU MediaGoblin is fairly new and so at the time of writing, there
21 aren't easy package-manager-friendly methods to install MediaGoblin.
22 However, doing a basic install isn't too complex in and of itself.
23
24 There's an almost infinite way to deploy things... for now, we'll keep
25 it simple with some assumptions and use a setup that combines
26 mediagoblin + virtualenv + fastcgi + nginx on a .deb or .rpm based
27 GNU/Linux distro.
28
29 .. note::
30
31 These tools are for site administrators wanting to deploy a fresh
32 install. If instead you want to join in as a contributor, see our
33 `Hacking HOWTO <http://wiki.mediagoblin.org/HackingHowto>`_ instead.
34
35 There are also many ways to install servers... for the sake of
36 simplicity, our instructions below describe installing with nginx.
37 For more recipes, including Apache, see
38 `our wiki <http://wiki.mediagoblin.org/Deployment>`_.
39
40 Prepare System
41 --------------
42
43 Dependencies
44 ~~~~~~~~~~~~
45
46 MediaGoblin has the following core dependencies:
47
48 - Python 2.7
49 - `python-lxml <http://lxml.de/>`_
50 - `git <http://git-scm.com/>`_
51 - `SQLite <http://www.sqlite.org/>`_/`PostgreSQL <http://www.postgresql.org/>`_
52 - `Python Imaging Library <http://www.pythonware.com/products/pil/>`_ (PIL)
53 - `virtualenv <http://www.virtualenv.org/>`_
54 - `nodejs <https://nodejs.org>`_
55
56 On a DEB-based system (e.g Debian, gNewSense, Trisquel, Ubuntu, and
57 derivatives) issue the following command::
58
59 # apt-get install git-core python python-dev python-lxml \
60 python-imaging python-virtualenv npm automake
61
62 On a RPM-based system (e.g. Fedora, RedHat, and derivatives) issue the
63 following command::
64
65 # yum install python-paste-deploy python-paste-script \
66 git-core python python-devel python-lxml python-imaging \
67 python-virtualenv npm automake
68
69 Configure PostgreSQL
70 ~~~~~~~~~~~~~~~~~~~~
71
72 .. note::
73
74 MediaGoblin currently supports PostgreSQL and SQLite. The default is a
75 local SQLite database. This will "just work" for small deployments.
76
77 For medium to large deployments we recommend PostgreSQL.
78
79 If you don't want/need postgres, skip this section.
80
81 These are the packages needed for Debian Wheezy (stable)::
82
83 # apt-get install postgresql postgresql-client python-psycopg2
84
85 These are the packages needed for an RPM-based system::
86
87 # yum install postgresql postgresql-server python-psycopg2
88
89 An RPM-based system also requires that you initialize the PostgresSQL database
90 with this command. The following command is not needed on a Debian-based
91 platform, however::
92
93 # /usr/bin/postgresql-setup initdb
94
95 The installation process will create a new *system* user named ``postgres``,
96 which will have privilegies sufficient to manage the database. We will create a
97 new database user with restricted privilegies and a new database owned by our
98 restricted database user for our MediaGoblin instance.
99
100 In this example, the database user will be ``mediagoblin`` and the database
101 name will be ``mediagoblin`` too.
102
103 We'll add these entities by first switching to the *postgres* account::
104
105 # su -u postgres
106
107 This will change your prompt to a shell prompt, such as *-bash-4.2$*. Enter
108 the following *createuser* and *createdb* commands at that prompt. We'll
109 create the *mediagoblin* database user first::
110
111 $ createuser -A -D mediagoblin
112
113 Then we'll create the database where all of our MediaGoblin data will be stored::
114
115 $ createdb -E UNICODE -O mediagoblin mediagoblin
116
117 where the first ``mediagoblin`` is the database owner and the second
118 ``mediagoblin`` is the database name.
119
120 Type ``exit`` to return to the *root* user prompt. From here we just need to
121 set the Postgres database to start on boot, and also start it up for this
122 particular session. If you're on a platform that does not use *systemd*, you
123 can enter::
124
125 # chkconfig postgresql on && service postgresql start
126
127 Whereas users of *systemd*-based systems will need to enter::
128
129 # systemctl enable postgresql && systemctl start postgresql
130
131 .. caution:: Where is the password?
132
133 These steps enable you to authenticate to the database in a password-less
134 manner via local UNIX authentication provided you run the MediaGoblin
135 application as a user with the same name as the user you created in
136 PostgreSQL.
137
138 More on this in :ref:`Drop Privileges for MediaGoblin <drop-privileges-for-mediagoblin>`.
139
140
141 .. _drop-privileges-for-mediagoblin:
142
143 Drop Privileges for MediaGoblin
144 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
145
146 MediaGoblin does not require special permissions or elevated
147 access to run. As such, the preferred way to run MediaGoblin is to
148 create a dedicated, unprivileged system user for the sole purpose of running
149 MediaGoblin. Running MediaGoblin processes under an unpriviledged system user
150 helps to keep it more secure.
151
152 The following command (entered as root or with sudo) will create a
153 system account with a username of ``mediagoblin``. You may choose a different
154 username if you wish.::
155
156 useradd --system --user-group mediagoblin
157
158 No password will be assigned to this account, and you will not be able
159 to log in as this user. To switch to this account, enter either::
160
161 sudo -u mediagoblin /bin/bash # (if you have sudo permissions)
162
163 or::
164
165 su mediagoblin -s /bin/bash # (if you have to use root permissions)
166
167 You may get a warning similar to this when entering these commands::
168
169 warning: cannot change directory to /home/mediagoblin: No such file or directory
170
171 You can disregard this warning. To return to your regular user account after
172 using the system account, just enter ``exit``.
173
174 .. _create-mediagoblin-directory:
175
176 Create a MediaGoblin Directory
177 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
178
179 You should create a working directory for MediaGoblin. This document
180 assumes your local git repository will be located at
181 ``/srv/mediagoblin.example.org/mediagoblin/``.
182 Substitute your prefered local deployment path as needed.
183
184 Setting up the working directory requires that we first create the directory
185 with elevated priviledges, and then assign ownership of the directory
186 to the unpriviledged system account.
187
188 To do this, enter either of the following commands, changing the defaults
189 to suit your particular requirements::
190
191 # mkdir -p /srv/mediagoblin.example.org && sudo chown -hR mediagoblin: /srv/mediagoblin.example.org
192
193 .. note::
194
195 Unless otherwise noted, the remainder of this document assumes that all
196 operations are performed using this unpriviledged account.
197
198
199 Install MediaGoblin and Virtualenv
200 ----------------------------------
201
202 .. note::
203
204 MediaGoblin is still developing rapidly. As a result
205 the following instructions recommend installing from the ``master``
206 branch of the git repository. Eventually production deployments will
207 want to transition to running from more consistent releases.
208
209 We will now clone the MediaGoblin source code repository and setup and
210 configure the necessary services. Modify these commands to
211 suit your own environment. As a reminder, you should enter these
212 commands using your unpriviledged system account.
213
214 Change to the MediaGoblin directory that you just created::
215
216 cd /srv/mediagoblin.example.org
217
218 Clone the MediaGoblin repository and set up the git submodules::
219
220 git clone https://gitorious.org/mediagoblin/mediagoblin.git -b stable
221 cd mediagoblin
222 git submodule init && git submodule update
223
224
225 Set up the hacking environment::
226
227 ./bootstrap.sh && ./configure && make
228
229 The above provides an in-package install of ``virtualenv``. While this
230 is counter to the conventional ``virtualenv`` configuration, it is
231 more reliable and considerably easier to configure and illustrate. If
232 you're familiar with Python packaging you may consider deploying with
233 your preferred method.
234
235 Assuming you are going to deploy with FastCGI, you should also install
236 flup::
237
238 ./bin/easy_install flup
239
240 (Sometimes this breaks because flup's site is flakey. If it does for
241 you, try)::
242
243 ./bin/easy_install https://pypi.python.org/pypi/flup/1.0.3.dev-20110405
244
245 This concludes the initial configuration of the development
246 environment. In the future, when you update your
247 codebase, you should also run::
248
249 git submodule update && ./bin/python setup.py develop --upgrade && ./bin/gmg dbupdate
250
251 Note: If you are running an active site, depending on your server
252 configuration, you may need to stop it first or the dbupdate command
253 may hang (and it's certainly a good idea to restart it after the
254 update)
255
256
257 Deploy MediaGoblin Services
258 ---------------------------
259
260 Edit site configuration
261 ~~~~~~~~~~~~~~~~~~~~~~~
262
263 A few basic properties must be set before MediaGoblin will work. First
264 make a copy of ``mediagoblin.ini`` for editing so the original config
265 file isn't lost::
266
267 cp mediagoblin.ini mediagoblin_local.ini
268
269 Then:
270 - Set ``email_sender_address`` to the address you wish to be used as
271 the sender for system-generated emails
272 - Edit ``direct_remote_path``, ``base_dir``, and ``base_url`` if
273 your mediagoblin directory is not the root directory of your
274 vhost.
275
276
277 Configure MediaGoblin to use the PostgreSQL database
278 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
279
280 If you are using postgres, edit the ``[mediagoblin]`` section in your
281 ``mediagoblin_local.ini`` and put in::
282
283 sql_engine = postgresql:///mediagoblin
284
285 if you are running the MediaGoblin application as the same 'user' as the
286 database owner.
287
288
289 Update database data structures
290 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
291
292 Before you start using the database, you need to run::
293
294 ./bin/gmg dbupdate
295
296 to populate the database with the MediaGoblin data structures.
297
298
299 Test the Server
300 ~~~~~~~~~~~~~~~
301
302 At this point MediaGoblin should be properly installed. You can
303 test the deployment with the following command::
304
305 ./lazyserver.sh --server-name=broadcast
306
307 You should be able to connect to the machine on port 6543 in your
308 browser to confirm that the service is operable.
309
310 .. _webserver-config:
311
312
313 FastCGI and nginx
314 ~~~~~~~~~~~~~~~~~
315
316 This configuration example will use nginx, however, you may
317 use any webserver of your choice as long as it supports the FastCGI
318 protocol. If you do not already have a web server, consider nginx, as
319 the configuration files may be more clear than the
320 alternatives.
321
322 Create a configuration file at
323 ``/srv/mediagoblin.example.org/nginx.conf`` and create a symbolic link
324 into a directory that will be included in your ``nginx`` configuration
325 (e.g. "``/etc/nginx/sites-enabled`` or ``/etc/nginx/conf.d``) with
326 one of the following commands (as the root user)::
327
328 ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/conf.d/
329 ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/sites-enabled/
330
331 Modify these commands and locations depending on your preferences and
332 the existing configuration of your nginx instance. The contents of
333 this ``nginx.conf`` file should be modeled on the following::
334
335 server {
336 #################################################
337 # Stock useful config options, but ignore them :)
338 #################################################
339 include /etc/nginx/mime.types;
340
341 autoindex off;
342 default_type application/octet-stream;
343 sendfile on;
344
345 # Gzip
346 gzip on;
347 gzip_min_length 1024;
348 gzip_buffers 4 32k;
349 gzip_types text/plain text/html application/x-javascript text/javascript text/xml text/css;
350
351 #####################################
352 # Mounting MediaGoblin stuff
353 # This is the section you should read
354 #####################################
355
356 # Change this to update the upload size limit for your users
357 client_max_body_size 8m;
358
359 # prevent attacks (someone uploading a .txt file that the browser
360 # interprets as an HTML file, etc.)
361 add_header X-Content-Type-Options nosniff;
362
363 server_name mediagoblin.example.org www.mediagoblin.example.org;
364 access_log /var/log/nginx/mediagoblin.example.access.log;
365 error_log /var/log/nginx/mediagoblin.example.error.log;
366
367 # MediaGoblin's stock static files: CSS, JS, etc.
368 location /mgoblin_static/ {
369 alias /srv/mediagoblin.example.org/mediagoblin/mediagoblin/static/;
370 }
371
372 # Instance specific media:
373 location /mgoblin_media/ {
374 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/media/public/;
375 }
376
377 # Theme static files (usually symlinked in)
378 location /theme_static/ {
379 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/theme_static/;
380 }
381
382 # Plugin static files (usually symlinked in)
383 location /plugin_static/ {
384 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/plugin_static/;
385 }
386
387 # Mounting MediaGoblin itself via FastCGI.
388 location / {
389 fastcgi_pass 127.0.0.1:26543;
390 include /etc/nginx/fastcgi_params;
391
392 # our understanding vs nginx's handling of script_name vs
393 # path_info don't match :)
394 fastcgi_param PATH_INFO $fastcgi_script_name;
395 fastcgi_param SCRIPT_NAME "";
396 }
397 }
398
399 The first four ``location`` directives instruct Nginx to serve the
400 static and uploaded files directly rather than through the MediaGoblin
401 process. This approach is faster and requires less memory.
402
403 .. note::
404
405 The user who owns the Nginx process, normally ``www-data``,
406 requires execute permission on the directories ``static``,
407 ``public``, ``theme_static`` and ``plugin_static`` plus all their
408 parent directories. This user also requires read permission on all
409 the files within these directories. This is normally the default.
410
411 Now, nginx instance is configured to serve the MediaGoblin
412 application. Perform a quick test to ensure that this configuration
413 works. Restart nginx so it picks up your changes, with a command that
414 resembles one of the following (as the root user)::
415
416 sudo /etc/init.d/nginx restart
417 sudo /etc/rc.d/nginx restart
418
419 Now start MediaGoblin. Use the following command sequence as an
420 example::
421
422 cd /srv/mediagoblin.example.org/mediagoblin/
423 ./lazyserver.sh --server-name=fcgi fcgi_host=127.0.0.1 fcgi_port=26543
424
425 Visit the site you've set up in your browser by visiting
426 <http://mediagoblin.example.org>. You should see MediaGoblin!
427
428 .. note::
429
430 The configuration described above is sufficient for development and
431 smaller deployments. However, for larger production deployments
432 with larger processing requirements, see the
433 ":doc:`production-deployments`" documentation.
434
435
436 Apache
437 ~~~~~~
438
439 Instructions and scripts for running MediaGoblin on an Apache server
440 can be found on the `MediaGoblin wiki <http://wiki.mediagoblin.org/Deployment>`_.
441
442
443 Security Considerations
444 ~~~~~~~~~~~~~~~~~~~~~~~
445
446 .. warning::
447
448 The directory ``user_dev/crypto/`` contains some very
449 sensitive files.
450 Especially the ``itsdangeroussecret.bin`` is very important
451 for session security. Make sure not to leak its contents anywhere.
452 If the contents gets leaked nevertheless, delete your file
453 and restart the server, so that it creates a new secret key.
454 All previous sessions will be invalidated.
455
456 ..
457 Local variables:
458 fill-column: 70
459 End: