]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/recipes/default.rb
Enable postgresql repos for pummelzackend
[chef.git] / cookbooks / nominatim / recipes / default.rb
1 #
2 # Cookbook Name:: nominatim
3 # Recipe:: base
4 #
5 # Copyright 2015, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 basedir = data_bag_item("accounts", "nominatim")["home"]
21 email_errors = data_bag_item("accounts", "lonvia")["email"]
22
23 directory node[:nominatim][:logdir] do
24   owner "nominatim"
25   group "nominatim"
26   mode 0o755
27   recursive true
28 end
29
30 file "#{node[:nominatim][:logdir]}/query.log" do
31   action :create_if_missing
32   owner "www-data"
33   group "adm"
34   mode 0o664
35 end
36
37 file "#{node[:nominatim][:logdir]}/update.log" do
38   action :create_if_missing
39   owner "nominatim"
40   group "adm"
41   mode 0o664
42 end
43
44 directory "#{basedir}/status" do
45   owner "nominatim"
46   group "postgres"
47   mode 0o775
48 end
49
50 ## Postgresql
51
52 include_recipe "postgresql"
53
54 package "postgis"
55
56 node[:nominatim][:dbadmins].each do |user|
57   postgresql_user user do
58     cluster node[:nominatim][:dbcluster]
59     superuser true
60     only_if { node[:nominatim][:state] != "slave" }
61   end
62 end
63
64 postgresql_user "nominatim" do
65   cluster node[:nominatim][:dbcluster]
66   superuser true
67   only_if { node[:nominatim][:state] != "slave" }
68 end
69
70 postgresql_user "www-data" do
71   cluster node[:nominatim][:dbcluster]
72   only_if { node[:nominatim][:state] != "slave" }
73 end
74
75 postgresql_munin "nominatim" do
76   cluster node[:nominatim][:dbcluster]
77   database node[:nominatim][:dbname]
78 end
79
80 directory "#{basedir}/tablespaces" do
81   owner "postgres"
82   group "postgres"
83   mode 0o700
84 end
85
86 # Note: tablespaces must be exactly in the same location on each
87 #       Nominatim instance when replication is in use. Therefore
88 #       use symlinks to canonical directory locations.
89 node[:nominatim][:tablespaces].each do |name, location|
90   directory location do
91     owner "postgres"
92     group "postgres"
93     mode 0o700
94     recursive true
95   end
96
97   link "#{basedir}/tablespaces/#{name}" do
98     to location
99   end
100
101   postgresql_tablespace name do
102     cluster node[:nominatim][:dbcluster]
103     location "#{basedir}/tablespaces/#{name}"
104   end
105 end
106
107 if node[:nominatim][:state] == "master" # ~FC023
108   postgresql_user "replication" do
109     cluster node[:nominatim][:dbcluster]
110     password data_bag_item("nominatim", "passwords")["replication"]
111     replication true
112   end
113
114   directory node[:rsyncd][:modules][:archive][:path] do
115     owner "postgres"
116     group "postgres"
117     mode 0o700
118   end
119
120   template "/usr/local/bin/clean-db-nominatim" do
121     source "clean-db-nominatim.erb"
122     owner "root"
123     group "root"
124     mode 0o755
125     variables :archive_dir => node[:rsyncd][:modules][:archive][:path],
126               :update_stop_file => "#{basedir}/status/updates_disabled",
127               :streaming_clients => search(:node, "nominatim_state:slave").map { |slave| slave[:fdqn] }.join(" ")
128   end
129 end
130
131 ## Nominatim backend
132
133 include_recipe "git"
134
135 package "build-essential"
136 package "cmake"
137 package "g++"
138 package "libboost-dev"
139 package "libboost-system-dev"
140 package "libboost-filesystem-dev"
141 package "libexpat1-dev"
142 package "zlib1g-dev"
143 package "libxml2-dev"
144 package "libbz2-dev"
145 package "libpq-dev"
146 package "libgeos++-dev"
147 package "libproj-dev"
148 package "osmosis"
149
150 source_directory = "#{basedir}/nominatim"
151 build_directory = "#{basedir}/bin"
152
153 directory build_directory do
154   owner "nominatim"
155   group "nominatim"
156   mode 0o755
157   recursive true
158 end
159
160 # Normally syncing via chef is a bad idea because syncing might involve
161 # an update of database functions which should not be done while an update
162 # is ongoing. Therefore we sync in between update cycles. There is an
163 # exception for slaves: they get DB function updates from the master, so
164 # only the source code needs to be updated, which chef may do.
165 git source_directory do
166   action node[:nominatim][:state] == "slave" ? :sync : :checkout
167   repository node[:nominatim][:repository]
168   revision node[:nominatim][:revision]
169   enable_submodules true
170   user "nominatim"
171   group "nominatim"
172   notifies :run, "execute[compile_nominatim]", :immediately
173 end
174
175 execute "compile_nominatim" do
176   action :nothing
177   user "nominatim"
178   cwd build_directory
179   command "cmake #{source_directory} && make"
180 end
181
182 template "#{source_directory}/.git/hooks/post-merge" do
183   source "git-post-merge-hook.erb"
184   owner "nominatim"
185   group "nominatim"
186   mode 0o755
187   variables :srcdir => source_directory,
188             :builddir => build_directory,
189             :dbname => node[:nominatim][:dbname]
190 end
191
192 template "#{build_directory}/settings/local.php" do
193   source "settings.erb"
194   owner "nominatim"
195   group "nominatim"
196   mode 0o664
197   variables :dbname => node[:nominatim][:dbname],
198             :flatnode_file => node[:nominatim][:flatnode_file],
199             :log_file => "#{node[:nominatim][:logdir]}/query.log"
200 end
201
202 if node[:nominatim][:flatnode_file] # ~FC023
203   directory File.dirname(node[:nominatim][:flatnode_file]) do
204     recursive true
205   end
206 end
207
208 template "/etc/logrotate.d/nominatim" do
209   source "logrotate.nominatim.erb"
210   owner "root"
211   group "root"
212   mode 0o644
213 end
214
215 external_data = [
216   "wikipedia_article.sql.bin",
217   "wikipedia_redirect.sql.bin",
218   "gb_postcode_data.sql.gz"
219 ]
220
221 external_data.each do |fname|
222   remote_file "#{source_directory}/data/#{fname}" do
223     action :create_if_missing
224     source "http://www.nominatim.org/data/#{fname}"
225     owner "nominatim"
226     group "nominatim"
227     mode 0o644
228   end
229 end
230
231 template "/etc/cron.d/nominatim" do
232   action node[:nominatim][:state] == :off ? :delete : :create
233   source "nominatim.cron.erb"
234   owner "root"
235   group "root"
236   mode "0644"
237   variables :bin_directory => "#{source_directory}/utils", :mailto => email_errors
238 end
239
240 template "#{source_directory}/utils/nominatim-update" do
241   source "updater.erb"
242   user "nominatim"
243   group "nominatim"
244   mode 0o755
245 end
246
247 template "/etc/init.d/nominatim-update" do
248   source "updater.init.erb"
249   user "nominatim"
250   group "nominatim"
251   mode 0o755
252   variables :source_directory => source_directory
253 end
254
255 %w(backup-nominatim vacuum-db-nominatim).each do |fname|
256   template "/usr/local/bin/#{fname}" do
257     source "#{fname}.erb"
258     owner "root"
259     group "root"
260     mode 0o755
261     variables :db => node[:nominatim][:dbname]
262   end
263 end
264
265 ## webserver frontend
266
267 template "#{source_directory}/settings/ip_blocks.conf" do
268   action :create_if_missing
269   source "ipblocks.erb"
270   owner "nominatim"
271   group "nominatim"
272   mode 0o664
273 end
274
275 file "#{source_directory}/settings/apache_blocks.conf" do
276   action :create_if_missing
277   owner "nominatim"
278   group "nominatim"
279   mode 0o664
280 end
281
282 file "#{source_directory}/settings/ip_blocks.map" do
283   action :create_if_missing
284   owner "nominatim"
285   group "nominatim"
286   mode 0o664
287 end
288
289 include_recipe "apache::ssl"
290
291 package "php"
292 package "php-fpm"
293 package "php-pgsql"
294 package "php-pear"
295 package "php-db"
296
297 apache_module "rewrite"
298 apache_module "proxy"
299 apache_module "proxy_fcgi"
300 apache_module "proxy_http"
301 apache_module "headers"
302
303 service "php5-fpm" do
304   if node[:lsb][:release].to_f >= 15.10
305     provider Chef::Provider::Service::Systemd
306     service_name "php7.0-fpm"
307   elsif node[:lsb][:release].to_f >= 14.04
308     provider Chef::Provider::Service::Upstart
309   end
310   action [:enable, :start]
311   supports :status => true, :restart => true, :reload => true
312 end
313
314 php_confdir = node[:lsb][:release].to_f >= 15.10 ? "/etc/php/7.0" : "/etc/php5"
315
316 node[:nominatim][:fpm_pools].each do |name, data|
317   template "#{php_confdir}/fpm/pool.d/#{name}.conf" do
318     source "fpm.conf.erb"
319     owner "root"
320     group "root"
321     mode 0o644
322     variables data.merge(:name => name)
323     notifies :reload, "service[php5-fpm]"
324   end
325 end
326
327 apache_site "nominatim.openstreetmap.org" do
328   template "apache.erb"
329   directory source_directory
330   variables :pools => node[:nominatim][:fpm_pools]
331 end
332
333 apache_site "default" do
334   action [:disable]
335 end
336
337 template "/etc/logrotate.d/apache2" do
338   source "logrotate.apache.erb"
339   owner "root"
340   group "root"
341   mode 0o644
342 end
343
344 include_recipe "fail2ban"
345
346 fail2ban_filter "nominatim" do
347   failregex '^<HOST> - - \[[^]]+\] "[^"]+" 429 '
348 end
349
350 fail2ban_jail "nominatim" do
351   filter "nominatim"
352   logpath "/var/log/apache2/nominatim.openstreetmap.org-access.log"
353   ports [80, 443]
354   maxretry 100
355 end
356
357 munin_plugin_conf "nominatim" do
358   template "munin.erb"
359   variables :db => node[:nominatim][:dbname],
360             :querylog => "#{node[:nominatim][:logdir]}/query.log"
361 end
362
363 munin_plugin "nominatim_importlag" do
364   target "#{source_directory}/munin/nominatim_importlag"
365 end
366
367 munin_plugin "nominatim_query_speed" do
368   target "#{source_directory}/munin/nominatim_query_speed_querylog"
369 end
370
371 munin_plugin "nominatim_requests" do
372   target "#{source_directory}/munin/nominatim_requests_querylog"
373 end
374
375 munin_plugin "nominatim_throttled_ips" do
376   target "#{source_directory}/munin/nominatim_throttled_ips"
377 end