]> git.openstreetmap.org Git - nominatim.git/blob - vagrant/Install-on-Ubuntu-18.sh
36e28ca1071fb6b43c85bb0d8ef9273d21e472e0
[nominatim.git] / vagrant / Install-on-Ubuntu-18.sh
1 #!/bin/bash
2 #
3 # hacks for broken vagrant box      #DOCS:
4 sudo rm -f /var/lib/dpkg/lock       #DOCS:
5 sudo update-locale LANG=en_US.UTF-8 #DOCS:
6 export APT_LISTCHANGES_FRONTEND=none #DOCS:
7 export DEBIAN_FRONTEND=noninteractive #DOCS:
8
9 #
10 # *Note:* these installation instructions are also available in executable
11 #         form for use with vagrant under vagrant/Install-on-Ubuntu-18.sh.
12 #
13 # Installing the Required Software
14 # ================================
15 #
16 # These instructions expect that you have a freshly installed Ubuntu 18.04.
17 #
18 # Make sure all packages are are up-to-date by running:
19 #
20
21     sudo apt-get -o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confold" --force-yes -fuy install grub-pc #DOCS:
22     sudo apt update -qq
23
24 # Now you can install all packages needed for Nominatim:
25
26     sudo apt install -y php-cgi
27     sudo apt install -y build-essential cmake g++ libboost-dev libboost-system-dev \
28                         libboost-filesystem-dev libexpat1-dev zlib1g-dev\
29                         libbz2-dev libpq-dev libproj-dev \
30                         postgresql-server-dev-10 postgresql-10-postgis-2.4 \
31                         postgresql-contrib-10 postgresql-10-postgis-scripts \
32                         php php-pgsql php-intl libicu-dev python3-pip \
33                         python3-psycopg2 python3-psutil python3-jinja2 python3-icu git \
34                         python3-argparse-manpage
35
36 # The python-dotenv package that comes with Ubuntu 18.04 is too old, so
37 # install the latest version from pip:
38
39     pip3 install python-dotenv
40
41 #
42 # System Configuration
43 # ====================
44 #
45 # The following steps are meant to configure a fresh Ubuntu installation
46 # for use with Nominatim. You may skip some of the steps if you have your
47 # OS already configured.
48 #
49 # Creating Dedicated User Accounts
50 # --------------------------------
51 #
52 # Nominatim will run as a global service on your machine. It is therefore
53 # best to install it under its own separate user account. In the following
54 # we assume this user is called nominatim and the installation will be in
55 # /srv/nominatim. To create the user and directory run:
56 #
57 #     sudo useradd -d /srv/nominatim -s /bin/bash -m nominatim
58 #
59 # You may find a more suitable location if you wish.
60 #
61 # To be able to copy and paste instructions from this manual, export
62 # user name and home directory now like this:
63 #
64     export USERNAME=vagrant        #DOCS:    export USERNAME=nominatim
65     export USERHOME=/home/vagrant  #DOCS:    export USERHOME=/srv/nominatim
66 #
67 # **Never, ever run the installation as a root user.** You have been warned.
68 #
69 # Make sure that system servers can read from the home directory:
70
71     chmod a+x $USERHOME
72
73 # Setting up PostgreSQL
74 # ---------------------
75 #
76 # Tune the postgresql configuration, which is located in 
77 # `/etc/postgresql/10/main/postgresql.conf`. See section *Postgres Tuning* in
78 # [the installation page](../admin/Installation.md#postgresql-tuning)
79 # for the parameters to change.
80 #
81 # Restart the postgresql service after updating this config file.
82
83     sudo systemctl restart postgresql
84
85 #
86 # Finally, we need to add two postgres users: one for the user that does
87 # the import and another for the webserver which should access the database
88 # for reading only:
89 #
90
91     sudo -u postgres createuser -s $USERNAME
92     sudo -u postgres createuser www-data
93
94 #
95 # Installing Nominatim
96 # ====================
97 #
98 # Building and Configuration
99 # --------------------------
100 #
101 # Get the source code from Github and change into the source directory
102 #
103 if [ "x$1" == "xyes" ]; then  #DOCS:    :::sh
104     cd $USERHOME
105     git clone --recursive git://github.com/openstreetmap/Nominatim.git
106     cd Nominatim
107 else                               #DOCS:
108     cd $USERHOME/Nominatim         #DOCS:
109 fi                                 #DOCS:
110
111 # When installing the latest source from github, you also need to
112 # download the country grid:
113
114 if [ ! -f data/country_osm_grid.sql.gz ]; then       #DOCS:    :::sh
115     wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
116 fi                                 #DOCS:
117
118 # The code must be built in a separate directory. Create this directory,
119 # then configure and build Nominatim in there:
120
121     mkdir $USERHOME/build
122     cd $USERHOME/build
123     cmake $USERHOME/Nominatim
124     make
125     sudo make install
126
127
128 # Nominatim is now ready to use. You can continue with
129 # [importing a database from OSM data](../admin/Import.md). If you want to set up
130 # a webserver first, continue reading.
131 #
132 # Setting up a webserver
133 # ======================
134 #
135 # The webserver should serve the php scripts from the website directory of your
136 # [project directory](../admin/Import.md#creating-the-project-directory).
137 # Therefore set up a project directory and populate the website directory:
138
139     mkdir $USERHOME/nominatim-project
140     cd $USERHOME/nominatim-project
141     nominatim refresh --website
142 #
143 # Option 1: Using Apache
144 # ----------------------
145 #
146 if [ "x$2" == "xinstall-apache" ]; then #DOCS:
147 #
148 # Apache has a PHP module that can be used to serve Nominatim. To install them
149 # run:
150
151     sudo apt install -y apache2 libapache2-mod-php
152
153 # You need to create an alias to the website directory in your apache
154 # configuration. Add a separate nominatim configuration to your webserver:
155
156 #DOCS:```sh
157 sudo tee /etc/apache2/conf-available/nominatim.conf << EOFAPACHECONF
158 <Directory "$USERHOME/nominatim-project/website">
159   Options FollowSymLinks MultiViews
160   AddType text/html   .php
161   DirectoryIndex search.php
162   Require all granted
163 </Directory>
164
165 Alias /nominatim $USERHOME/nominatim-project/website
166 EOFAPACHECONF
167 #DOCS:```
168
169 #
170 # Then enable the configuration and restart apache
171 #
172
173     sudo a2enconf nominatim
174     sudo systemctl restart apache2
175
176 # The Nominatim API is now available at `http://localhost/nominatim/`.
177
178 fi   #DOCS:
179
180 #
181 # Option 2: Using nginx
182 # ---------------------
183 #
184 if [ "x$2" == "xinstall-nginx" ]; then #DOCS:
185
186 # Nginx has no native support for php scripts. You need to set up php-fpm for
187 # this purpose. First install nginx and php-fpm:
188
189     sudo apt install -y nginx php-fpm
190
191 # You need to configure php-fpm to listen on a Unix socket.
192
193 #DOCS:```sh
194 sudo tee /etc/php/7.2/fpm/pool.d/www.conf << EOF_PHP_FPM_CONF
195 [www]
196 ; Replace the tcp listener and add the unix socket
197 listen = /var/run/php7.2-fpm.sock
198
199 ; Ensure that the daemon runs as the correct user
200 listen.owner = www-data
201 listen.group = www-data
202 listen.mode = 0666
203
204 ; Unix user of FPM processes
205 user = www-data
206 group = www-data
207
208 ; Choose process manager type (static, dynamic, ondemand)
209 pm = ondemand
210 pm.max_children = 5
211 EOF_PHP_FPM_CONF
212 #DOCS:```
213
214 # Then create a Nginx configuration to forward http requests to that socket.
215
216 #DOCS:```sh
217 sudo tee /etc/nginx/sites-available/default << EOF_NGINX_CONF
218 server {
219     listen 80 default_server;
220     listen [::]:80 default_server;
221
222     root $USERHOME/nominatim-project/website;
223     index search.php index.html;
224     location / {
225         try_files \$uri \$uri/ @php;
226     }
227
228     location @php {
229         fastcgi_param SCRIPT_FILENAME "\$document_root\$uri.php";
230         fastcgi_param PATH_TRANSLATED "\$document_root\$uri.php";
231         fastcgi_param QUERY_STRING    \$args;
232         fastcgi_pass unix:/var/run/php7.2-fpm.sock;
233         fastcgi_index index.php;
234         include fastcgi_params;
235     }
236
237     location ~ [^/]\.php(/|$) {
238         fastcgi_split_path_info ^(.+?\.php)(/.*)$;
239         if (!-f \$document_root\$fastcgi_script_name) {
240             return 404;
241         }
242         fastcgi_pass unix:/var/run/php7.2-fpm.sock;
243         fastcgi_index search.php;
244         include fastcgi.conf;
245     }
246 }
247 EOF_NGINX_CONF
248 #DOCS:```
249
250 #
251 # Enable the configuration and restart Nginx
252 #
253
254     sudo systemctl restart php7.2-fpm nginx
255
256 # The Nominatim API is now available at `http://localhost/`.
257
258
259
260 fi   #DOCS: