]> git.openstreetmap.org Git - nominatim.git/blob - vagrant/install-on-centos-7.sh
travis-ci setup, some tests fails
[nominatim.git] / vagrant / install-on-centos-7.sh
1 #!/bin/bash
2 #
3 # *Note:* these installation instructions are also available in executable
4 #         form for use with vagrant under vagrant/install-on-centos-7.sh.
5 #
6 # Installing the Required Software
7 # ================================
8 #
9 # These instructions expect that you have a freshly installed CentOS version 7.
10 # Make sure all packages are are up-to-date by running:
11 #
12     sudo yum update -y
13
14 # The standard CentOS repositories don't contain all the required packages,
15 # you need to enable the EPEL repository as well. To enable it on CentOS,
16 # install the epel-release RPM by running:
17
18     sudo yum install -y epel-release
19
20 # Now you can install all packages needed for Nominatim:
21
22     sudo yum install -y postgresql-server postgresql-contrib postgresql-devel postgis postgis-utils \
23                         git cmake make gcc gcc-c++ libtool policycoreutils-python \
24                         php-pgsql php php-pear php-pear-DB libpqxx-devel proj-epsg \
25                         bzip2-devel proj-devel geos-devel libxml2-devel boost-devel expat-devel zlib-devel
26
27 # If you want to run the test suite, you need to install the following
28 # aditional packages:
29
30     sudo yum install -y python-pip python-Levenshtein python-psycopg2 \
31                         php-phpunit-PHPUnit
32     pip install --user --upgrade pip setuptools lettuce==0.2.18 six==1.9 \
33                                  haversine Shapely pytidylib
34
35 #
36 # System Configuration
37 # ====================
38 #
39 # The following steps are meant to configure a fresh CentOS installation
40 # for use with Nominatim. You may skip some of the steps if you have your
41 # OS already configured.
42 #
43 # Creating Dedicated User Accounts
44 # --------------------------------
45 #
46 # Nominatim will run as a global service on your machine. It is therefore
47 # best to install it under its own separate user account. In the following
48 # we assume this user is called nominatim and the installation will be in
49 # /srv/nominatim. To create the user and directory run:
50 #
51 #     sudo useradd -d /srv/nominatim -s /bin/bash -m nominatim
52 #
53 # You may find a more suitable location if you wish.
54 #
55 # To be able to copy and paste instructions from this manual, export
56 # user name and home directory now like this:
57 #
58     export USERNAME=vagrant        #DOCS:    export USERNAME=nominatim
59     export USERHOME=/home/vagrant  #DOCS:    export USERHOME=/srv/nominatim
60 #
61 # **Never, ever run the installation as a root user.** You have been warned.
62 #
63 # Make sure that system servers can read from the home directory:
64
65     chmod a+x $USERHOME
66
67 # Setting up PostgreSQL
68 # ---------------------
69 #
70 # CentOS does not automatically create a database cluster. Therefore, start
71 # with initializing the database, then enable the server to start at boot:
72
73     sudo postgresql-setup initdb
74     sudo systemctl enable postgresql
75
76 #
77 # Next tune the postgresql configuration, which is located in 
78 # `/var/lib/pgsql/data/postgresql.conf`. See section *Postgres Tuning* in
79 # [the installation page](Installation.md) for the parameters to change.
80 #
81 # Now start 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 ro access the database:
88 #
89
90     sudo -u postgres createuser -s $USERNAME
91     sudo -u postgres createuser apache
92
93 #
94 # Setting up the Apache Webserver
95 # -------------------------------
96 #
97 # You need to create an alias to the website directory in your apache
98 # configuration. Add a separate nominatim configuration to your webserver:
99
100 #DOCS:```
101 sudo tee /etc/httpd/conf.d/nominatim.conf << EOFAPACHECONF
102 <Directory "$USERHOME/build/website"> #DOCS:<Directory "$USERHOME/Nominatim/build/website">
103   Options FollowSymLinks MultiViews
104   AddType text/html   .php
105   Require all granted
106 </Directory>
107
108 Alias /nominatim $USERHOME/build/website  #DOCS:Alias /nominatim $USERHOME/Nominatim/build/website
109 EOFAPACHECONF
110 #DOCS:```
111
112 sudo sed -i 's:#.*::' /etc/httpd/conf.d/nominatim.conf #DOCS:
113
114 #
115 # Then reload apache
116 #
117
118     sudo systemctl restart httpd
119
120 #
121 # Adding SELinux Security Settings
122 # --------------------------------
123 #
124 # It is a good idea to leave SELinux enabled and enforcing, particularly
125 # with a web server accessible from the Internet. At a minimum the
126 # following SELinux labeling should be done for Nominatim:
127
128     sudo semanage fcontext -a -t httpd_sys_content_t "$USERHOME/Nominatim/(website|lib|settings)(/.*)?"
129     sudo semanage fcontext -a -t lib_t "$USERHOME/Nominatim/module/nominatim.so"
130     sudo restorecon -R -v $USERHOME/Nominatim
131
132 #
133 # Installing Nominatim
134 # ====================
135 #
136 # Building and Configuration
137 # --------------------------
138 #
139 # Get the source code from Github and change into the source directory
140 #
141 if [ "x$1" == "xyes" ]; then  #DOCS:
142
143     cd $USERHOME
144     git clone --recursive git://github.com/twain47/Nominatim.git
145 #DOCS:    cd Nominatim
146
147 else                               #DOCS:
148     cd $USERHOME                   #DOCS:
149 fi                                 #DOCS:
150
151 # The code is built in a special directory. Create this directory,
152 # then configure and build Nominatim in there:
153
154     mkdir build
155     cd build
156     cmake $USERHOME/Nominatim
157     make
158
159 # You need to create a minimal configuration file that tells nominatim
160 # the name of your webserver user and the URL of the website:
161
162 #DOCS:```
163 tee settings/local.php << EOF
164 <?php
165  @define('CONST_Database_Web_User', 'apache');
166  @define('CONST_Website_BaseURL', '/nominatim/');
167 EOF
168 #DOCS:```
169
170
171 # Nominatim is now ready to use. Continue with
172 # [importing a database from OSM data](Import_and_update.md).