]> git.ozlabs.org Git - patchwork/blob - docs/INSTALL
16ab2b5983a3cc3ebc28d3c1f85728199ee0174c
[patchwork] / docs / INSTALL
1 Deploying Patchwork
2
3 Patchwork uses the django framework - there is some background on deploying
4 django applications here:
5
6  http://www.djangobook.com/en/2.0/chapter12/
7
8 You'll need the following (applications used for patchwork development are
9 in brackets):
10
11   * A python interpreter
12   * django >= 1.5
13   * A webserver (apache)
14   * mod_python or flup
15   * A database server (postgresql, mysql)
16   * relevant python modules for the database server (e.g: python-mysqldb)
17
18
19 1. Database setup
20
21     At present, I've tested with PostgreSQL and (to a lesser extent) MySQL
22     database servers. If you have any (positive or negative) experiences with
23     either, email me.
24
25     For the following commands, a $ prefix signifies that the command should be
26     entered at your shell prompt, and a > prefix signifies the command-line
27     client for your sql server (psql or mysql)
28
29     Create a database for the system, add accounts for two system users: the
30     web user (the user that your web server runs as) and the mail user (the
31     user that your mail server runs as). On Ubuntu these are
32     www-data and nobody, respectively.
33
34     As an alternative, you can use password-based login and a single database
35     account. This is described further down.
36
37     For PostgreSQL (ident-based)
38
39         $ createdb patchwork
40         $ createuser www-data
41         $ createuser nobody
42
43         - postgres uses the standard UNIX authentication, so these users
44           will only be accessible for processes running as the same username.
45           This means that no passwords need to be set.
46
47     For PostgreSQL (password-based)
48
49         $ createuser -PE patchwork
50         $ createdb -O patchwork patchwork
51
52         Once that is done, you need to tell Django about the new Database
53         settings, using local_settings.py (see below) to override the defaults
54         in settings.py:
55
56         DATABASES = {
57             'default': {
58                 'ENGINE': 'django.db.backends.postgresql_psycopg2',
59                 'HOST': 'localhost',
60                 'PORT': '',
61                 'USER': 'patchwork',
62                 'PASSWORD': 'my_secret_password',
63                 'NAME': 'patchwork',
64             },
65         }
66
67     For MySQL:
68         $ mysql
69         > CREATE DATABASE patchwork CHARACTER SET utf8;
70         > CREATE USER 'www-data'@'localhost' IDENTIFIED BY '<password>';
71         > CREATE USER 'nobody'@'localhost' IDENTIFIED BY '<password>';
72
73         Once that is done, you need to tell Django about the new Database
74         settings, using local_settings.py (see below) to override the defaults
75         in settings.py:
76
77         DATABASES = {
78             'default': {
79                 'ENGINE': 'django.db.backends.mysql',
80                 'HOST': 'localhost',
81                 'PORT': '',
82                 'USER': 'patchwork',
83                 'PASSWORD': 'my_secret_password',
84                 'NAME': 'patchwork',
85                 'TEST_CHARSET': 'utf8',
86             },
87         }
88
89         TEST_CHARSET is used when creating tables for the test suite. Without
90         it, tests checking for the correct handling of non-ASCII characters
91         fail.
92
93
94 2. Django setup
95
96     Set up some initial directories in the patchwork base directory:
97
98       mkdir -p lib/packages lib/python
99
100     lib/packages is for stuff we'll download; lib/python is to add
101     to our python path. We'll symlink python modules into lib/python.
102
103     At the time of release, patchwork depends on django version 1.5 or
104     later. Your distro probably provides this. If not, do a:
105
106       cd lib/packages
107       git clone https://github.com/django/django.git -b stable/1.5.x
108       cd ../python
109       ln -s ../packages/django/django ./django
110
111     The settings.py file contains default settings for patchwork, you'll
112     need to configure settings for your own setup.
113
114     Rather than edit settings.py, create a file 'local_settings.py', and
115     override or add settings as necessary. You'll need to define the
116     following:
117
118       SECRET_KEY
119       ADMINS
120       TIME_ZONE
121       LANGUAGE_CODE
122       DEFAULT_FROM_EMAIL
123       NOTIFICATION_FROM_EMAIL
124
125     You can generate the SECRET_KEY with the following python code:
126
127       import string, random
128       chars = string.letters + string.digits + string.punctuation
129       print repr("".join([random.choice(chars) for i in range(0,50)]))
130
131     If you wish to enable the XML-RPC interface, add the following to
132     your local_settings.py file:
133
134       ENABLE_XMLRPC = True
135
136     Then, get patchwork to create its tables in your configured database:
137
138      cd apps/
139      PYTHONPATH=../lib/python ./manage.py syncdb
140
141     And add privileges for your mail and web users. This is only needed if
142     you use the ident-based approach. If you use password-based database
143     authentication, you can skip this step.
144
145     Postgresql:
146       psql -f lib/sql/grant-all.postgres.sql patchwork
147
148     MySQL:
149       mysql patchwork < lib/sql/grant-all.mysql.sql
150
151
152 3. Apache setup
153
154     Example apache configuration files are in lib/apache2/.
155
156     wsgi:
157
158         django has built-in support for WSGI, which supersedes the fastcgi
159         handler. It is thus the preferred method to run patchwork.
160
161         The necessary configuration for Apache2 may be found in
162
163          lib/apache2/patchwork.wsgi.conf.
164
165         You will need to install/enable mod_wsgi for this to work:
166
167          a2enmod wsgi
168          apache2ctl restart
169
170
171      mod_python:
172
173         An example apache configuration file for mod_python is in:
174
175           lib/apache2/patchwork.mod_python.conf
176
177         However, mod_python and mod_php may not work well together. So, if your
178         web server is used for serving php files, the fastcgi method may suit
179         instead.
180
181
182     fastcgi:
183
184         django has built-in support for fastcgi, which requires the
185         'flup' python module. An example configuration is in:
186
187           lib/apache2/patchwork.fastcgi.conf
188
189         - this also requires the mod_rewrite apache module to be loaded.
190
191         Once you have apache set up, you can start the fastcgi server with:
192
193           cd /srv/patchwork/apps
194           ./manage.py runfcgi method=prefork \
195                               socket=/srv/patchwork/var/fcgi.sock \
196                               pidfile=/srv/patchwork/var/fcgi.pid
197
198
199 4. Configure patchwork
200     Now, you should be able to administer patchwork, by visiting the
201     URL:
202
203       http://your-host/admin/
204
205     You'll probably want to do the following:
206
207       * Set up your projects
208       * Configure your website address (in the Sites) section
209
210     
211 5. Subscribe a local address to the mailing list
212
213     You will need an email address for patchwork to receive email on - for
214     example - patchwork@, and this address will need to be subscribed to the
215     list. Depending on the mailing list, you will probably need to confirm the
216     subscription - temporarily direct the alias to yourself to do this.
217
218
219 6. Setup your MTA to deliver mail to the parsemail script
220
221     Your MTA will need to deliver mail to the parsemail script in the email/
222     directory. (Note, do not use the parsemail.py script directly). Something
223     like this in /etc/aliases is suitable for postfix:
224
225       patchwork: "|/srv/patchwork/apps/patchwork/bin/parsemail.sh"
226
227     You may need to customise the parsemail.sh script if you haven't installed
228     patchwork in /srv/patchwork.
229
230     Test that you can deliver a patch to this script:
231
232      sudo -u nobody /srv/patchwork/apps/patchwork/bin/parsemail.sh < mail
233
234
235 7. Set up the patchwork cron script
236
237     Patchwork uses a cron script to clean up expired registrations, and
238     send notifications of patch changes (for projects with this enabled).
239
240     Something like this in your crontab should work:
241
242       # m h  dom mon dow   command
243       PYTHONPATH=apps:.
244       DJANGO_SETTINGS_MODULE=settings
245       */10 * * * * cd patchwork; python apps/patchwork/bin/patchwork-cron.py
246
247
248     - the frequency should be the same as the NOTIFICATION_DELAY_MINUTES
249     setting, which defaults to 10 minutes.
250
251
252 8. Optional: Configure your VCS to automatically update patches
253
254     The tools directory of the patchwork distribution contains a file
255     named post-receive.hook which is an example git hook that can be
256     used to automatically update patches to the Accepted state when
257     corresponding comits are pushed via git.
258
259     To install this hook, simply copy it to the .git/hooks directory on
260     your server, name it post-receive, and make it executable.
261
262     This sample hook has support to update patches to different states
263     depending on which branch is being pushed to. See the STATE_MAP
264     setting in that file.
265
266     If you are using a system other than git, you can likely write a
267     similar hook using pwclient to update patch state. If you do write
268     one, please contribute it.
269
270
271 Some errors:
272
273 * __init__() got an unexpected keyword argument 'max_length'
274
275  - you're running an old version of django. If your distribution doesn't
276    provide a newer version, just download and extract django into
277    lib/python/django
278
279 * ERROR: permission denied for relation patchwork_...
280
281  - the user that patchwork is running as (ie, the user of the web-server)
282    doesn't have access to the patchwork tables in the database. Check that
283    your web-server user exists in the database, and that it has permissions
284    to the tables.
285
286 * pwclient fails for actions that require authentication, but a username
287   and password is given in ~/.pwclientrc. Server reports "No authentication
288   credentials given".
289
290  - if you're using the FastCGI interface to apache, you'll need the
291    '-pass-header Authorization' option to the FastCGIExternalServer
292    configuration directive.