Tested on 14.04 using Postgres 9.3
http://wiki.openstreetmap.org/wiki/Nominatim/Installation
After the repository has been cloned from github, proceed by making your own .config.sh
file based on the .config.sh.template
file.
Running the installation script run.sh
(as root) will:
.config.sh
fileThe root user is required to install the packages, but most of the installation is done as the nominatim user (using sudo).
Add this repository to a machine using the following, as your normal username (not root). In the listing the grouped items can usually be cut and pasted together into the command shell, others require responding to a prompt:
# Install git
sudo apt-get -y install git
# Tell git who you are
git config --global user.name "Your git username"
git config --global user.email "Your git email"
# Clone the installer
git clone https://github.com/cyclestreets/nominatim-install.git
# Move to the right place
sudo mv nominatim-install /opt
cd /opt/nominatim-install/
git config core.sharedRepository group
# Instantiate a config file
cp .config.sh.template .config.sh
# Edit .config.sh
# At least set a password for the nominatim user
# Rest of file defaults to processing Andorra - which should take about half an hour
# Run the installation
sudo ./run.sh