3 # *Note:* these installation instructions are also available in executable
4 # form for use with vagrant under `vagrant/Install-on-Centos-7.sh`.
6 # Installing the Required Software
7 # ================================
9 # These instructions expect that you have a freshly installed CentOS version 7.
10 # Make sure all packages are up-to-date by running:
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:
18 sudo yum install -y epel-release
20 # Now you can install all packages needed for Nominatim:
23 sudo yum install -y postgresql-server postgresql-contrib postgresql-devel \
24 postgis postgis-utils \
25 git cmake make gcc gcc-c++ libtool policycoreutils-python \
26 php-pgsql php php-pear php-pear-DB php-intl libpqxx-devel \
27 proj-epsg bzip2-devel proj-devel libxml2-devel boost-devel \
28 expat-devel zlib-devel
30 # If you want to run the test suite, you need to install the following
31 # additional packages:
34 sudo yum install -y python34-pip python34-setuptools python34-devel \
36 pip3 install --user behave nose pytidylib psycopg2
37 sudo pear install PHP_CodeSniffer
40 # System Configuration
41 # ====================
43 # The following steps are meant to configure a fresh CentOS installation
44 # for use with Nominatim. You may skip some of the steps if you have your
45 # OS already configured.
47 # Creating Dedicated User Accounts
48 # --------------------------------
50 # Nominatim will run as a global service on your machine. It is therefore
51 # best to install it under its own separate user account. In the following
52 # we assume this user is called nominatim and the installation will be in
53 # /srv/nominatim. To create the user and directory run:
55 # sudo useradd -d /srv/nominatim -s /bin/bash -m nominatim
57 # You may find a more suitable location if you wish.
59 # To be able to copy and paste instructions from this manual, export
60 # user name and home directory now like this:
62 export USERNAME=vagrant #DOCS: export USERNAME=nominatim
63 export USERHOME=/home/vagrant #DOCS: export USERHOME=/srv/nominatim
65 # **Never, ever run the installation as a root user.** You have been warned.
67 # Make sure that system servers can read from the home directory:
71 # Setting up PostgreSQL
72 # ---------------------
74 # CentOS does not automatically create a database cluster. Therefore, start
75 # with initializing the database, then enable the server to start at boot:
77 sudo postgresql-setup initdb
78 sudo systemctl enable postgresql
81 # Next tune the postgresql configuration, which is located in
82 # `/var/lib/pgsql/data/postgresql.conf`. See section *Postgres Tuning* in
83 # [the installation page](../admin/Installation.md#postgresql-tuning)
84 # for the parameters to change.
86 # Now start the postgresql service after updating this config file.
88 sudo systemctl restart postgresql
91 # Finally, we need to add two postgres users: one for the user that does
92 # the import and another for the webserver which should access the database
96 sudo -u postgres createuser -s $USERNAME
97 sudo -u postgres createuser apache
100 # Setting up the Apache Webserver
101 # -------------------------------
103 # You need to create an alias to the website directory in your apache
104 # configuration. Add a separate nominatim configuration to your webserver:
107 sudo tee /etc/httpd/conf.d/nominatim.conf << EOFAPACHECONF
108 <Directory "$USERHOME/build/website"> #DOCS:<Directory "$USERHOME/Nominatim/build/website">
109 Options FollowSymLinks MultiViews
110 AddType text/html .php
111 DirectoryIndex search.php
115 Alias /nominatim $USERHOME/build/website #DOCS:Alias /nominatim $USERHOME/Nominatim/build/website
119 sudo sed -i 's:#.*::' /etc/httpd/conf.d/nominatim.conf #DOCS:
125 sudo systemctl restart httpd
128 # Adding SELinux Security Settings
129 # --------------------------------
131 # It is a good idea to leave SELinux enabled and enforcing, particularly
132 # with a web server accessible from the Internet. At a minimum the
133 # following SELinux labeling should be done for Nominatim:
135 sudo semanage fcontext -a -t httpd_sys_content_t "$USERHOME/Nominatim/(website|lib|settings)(/.*)?"
136 sudo semanage fcontext -a -t lib_t "$USERHOME/Nominatim/module/nominatim.so"
137 sudo restorecon -R -v $USERHOME/Nominatim
140 # Installing Nominatim
141 # ====================
143 # Building and Configuration
144 # --------------------------
146 # Get the source code from Github and change into the source directory
148 if [ "x$1" == "xyes" ]; then #DOCS: :::sh
150 git clone --recursive git://github.com/openstreetmap/Nominatim.git
153 cd $USERHOME/Nominatim #DOCS:
156 # When installing the latest source from github, you also need to
157 # download the country grid:
159 if [ ! -f data/country_osm_grid.sql.gz ]; then #DOCS: :::sh
160 wget -O data/country_osm_grid.sql.gz https://www.nominatim.org/data/country_grid.sql.gz
163 # The code must be built in a separate directory. Create this directory,
164 # then configure and build Nominatim in there:
166 cd $USERHOME #DOCS: :::sh
169 cmake $USERHOME/Nominatim
172 # You need to create a minimal configuration file that tells nominatim
173 # the name of your webserver user and the URL of the website:
176 tee settings/local.php << EOF
178 @define('CONST_Database_Web_User', 'apache');
179 @define('CONST_Website_BaseURL', '/nominatim/');
184 # Nominatim is now ready to use. Continue with
185 # [importing a database from OSM data](../admin/Import-and-Update.md).