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