]> git.openstreetmap.org Git - nominatim.git/blob - vagrant/ubuntu-trusty-provision.sh
Reverse geocode include geometry - added bounding box tests
[nominatim.git] / vagrant / ubuntu-trusty-provision.sh
1 #!/bin/bash
2
3 # This script sets up a Nominatim installation on a Ubuntu box.
4 #
5 # For more detailed installation instructions see also
6 # http://wiki.openstreetmap.org/wiki/Nominatim/Installation
7
8 ## Part 1: System preparation
9
10 ## During 'vagrant provision' this script runs as root and the current
11 ## directory is '/root'
12 USERNAME=vagrant
13
14 ### 
15 ### maybe create ubuntu user
16 ### 
17
18 # if [[ ! `id -u $USERNAME` ]]; then
19 #   useradd $USERNAME --create-home --shell /bin/bash
20 #   
21 #   # give sudo power
22 #   echo "$USERNAME ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/99-$USERNAME-user
23 #   chmod 0440 /etc/sudoers.d/99-$USERNAME-user
24 #   service sudo restart
25 #   
26 #   # add basic .profile
27 #   cp -r .ssh .profile .bashrc /home/$USERNAME/
28 #   chown -R $USERNAME /home/$USERNAME/.*
29 #   chgrp -R $USERNAME /home/$USERNAME/.*
30 #   
31 #   # now ideally login as $USERNAME and continue
32 #   su $USERNAME -l
33 # fi
34
35
36 sudo apt-get update -qq
37 sudo apt-get upgrade -y
38 sudo apt-get install -y build-essential libgeos-dev libpq-dev libbz2-dev \
39                         libtool automake libproj-dev libboost-dev  libboost-system-dev \
40                         libboost-filesystem-dev libboost-thread-dev libexpat-dev
41 sudo apt-get autoremove -y
42
43 # get arrow-keys working in terminal (e.g. editing in vi)
44 echo 'stty sane' >> ~/.bash_profile
45 echo 'export TERM=linux' >> ~/.bash_profile
46 source ~/.bash_profile
47
48
49 ###
50 ### PostgreSQL 9.3 + PostGIS 2.1
51 ###
52
53 sudo apt-get install -y postgresql-9.3-postgis-2.1 postgresql-contrib-9.3 postgresql-server-dev-9.3 
54 # already included: proj-bin libgeos-dev
55
56 # make sure OS-authenticated users (e.g. $USERNAME) can access
57 sudo sed -i "s/ident/trust/" /etc/postgresql/9.3/main/pg_hba.conf
58 sudo sed -i "s/md5/trust/"   /etc/postgresql/9.3/main/pg_hba.conf
59 sudo sed -i "s/peer/trust/"  /etc/postgresql/9.3/main/pg_hba.conf
60 sudo /etc/init.d/postgresql restart
61
62 # creates the role
63 sudo -u postgres createuser -s $USERNAME
64
65
66
67 ###
68 ### PHP for frontend
69 ###
70 sudo apt-get install -y php5 php5-pgsql php-pear php-db
71
72
73 # get rid of some warning
74 # where is the ini file? 'php --ini'
75 echo "date.timezone = 'Etc/UTC'" | sudo tee /etc/php5/cli/conf.d/99-timezone.ini > /dev/null
76
77
78
79 ###
80 ### Nominatim
81 ###
82 sudo apt-get install -y libgeos-c1 libgeos++-dev libxml2-dev
83
84 ## Part 2: Nominatim installaion
85
86 # now ideally login as $USERNAME and continue
87 cd /home/$USERNAME
88
89 # If the Nominatim source is not being shared with the host, check out source.
90 if [ ! -d "Nominatim" ]; then
91   sudo apt-get install -y git
92   sudo -u $USERNAME git clone --recursive https://github.com/twain47/Nominatim.git
93 fi
94
95 cd Nominatim
96
97 sudo -u $USERNAME ./autogen.sh
98 sudo -u $USERNAME ./configure
99 sudo -u $USERNAME make
100 chmod +x ./
101 chmod +x ./module
102
103
104 LOCALSETTINGS_FILE='settings/local.php'
105 if [[ -e "$LOCALSETTINGS_FILE" ]]; then
106   echo "$LOCALSETTINGS_FILE already exist, writing to settings/local-vagrant.php instead."
107   LOCALSETTINGS_FILE='settings/local-vagrant.php'
108 fi
109
110 # IP=`curl -s http://bot.whatismyipaddress.com`
111 IP=localhost
112 echo "<?php
113    // General settings
114    @define('CONST_Database_DSN', 'pgsql://@/nominatim');
115    // Paths
116    @define('CONST_Postgresql_Version', '9.3');
117    @define('CONST_Postgis_Version', '2.1');
118    // Website settings
119    @define('CONST_Website_BaseURL', 'http://$IP:8089/nominatim/');
120 " > $LOCALSETTINGS_FILE
121
122
123
124
125
126
127
128 ###
129 ### Setup Apache/website
130 ###
131
132 sudo -u postgres createuser -SDR www-data
133
134 echo '
135 Listen 8089
136 <VirtualHost *:8089>
137     # DirectoryIndex index.html
138     # ErrorDocument 403 /index.html
139
140     DocumentRoot "/var/www/"
141  
142     <Directory "/var/www/nominatim/">
143       Options FollowSymLinks MultiViews
144       AddType text/html   .php     
145     </Directory>
146 </VirtualHost>
147 ' | sudo tee /etc/apache2/sites-enabled/nominatim.conf > /dev/null
148
149
150 apache2ctl graceful
151
152
153 mkdir -m 755 /var/www/nominatim
154 chown $USERNAME /var/www/nominatim
155 sudo -u $USERNAME ./utils/setup.php --create-website /var/www/nominatim
156
157
158 # if you get 'permission denied for relation word', then try
159 # GRANT usage ON SCHEMA public TO "www-data";
160 # GRANT SELECT ON ALL TABLES IN SCHEMA public TO "www-data";
161
162 ##
163 ## Test suite (Python)
164 ## https://github.com/twain47/Nominatim/tree/master/tests
165 ##
166 apt-get install -y python-dev python-pip python-Levenshtein python-shapely \
167                         python-psycopg2 tidy python-nose python-tidylib
168 pip install lettuce==0.2.18 six==1.7 haversine
169
170 ## Test suite (PHP)
171 ## https://github.com/twain47/Nominatim/tree/master/tests-php
172 apt-get install -y phpunit
173
174