How to install OSRM backend on Ubuntu 20.04.1 LTS


How to install OSRM backend on Ubuntu 20.04.1 LTS

What is OSRM?

The Open Source Routing Machine or OSRM is a C++ implementation of a high-performance routing engine for shortest paths in road networks. Licensed under the permissive 2-clause BSD license, OSRM is a free network service. OSRM supports Linux, FreeBSD, Windows, and Mac OS X platform.

Tutorial used from Digital Ocean using Geofabrik Map.

Before digging into, you can check Initial Server Setup with Ubuntu 14.04. I added 4GB swap memory using this tutorial.

Please note that the structure for your folders should be

  • ROOT
    • osrm
      • map.osm.pbf
    • osrm-backend (this is the repo cloned. info how to build also here)

See below for required dependencies.

mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
sudo cmake --build . --target install

To extract the maps you should be in the root.

~$ osrm-extract osrm/map-latest.osm.pbf -p ./osrm-backend/profiles/car.lua

How to run osrm locally:

osrm-routed /home/osrm/osrm/map.osrm

Setup Nginx

Point 9 is described here, but to summary let’s dive in:

Install Nginx

sudo apt-get install nginx

Create a new configuration file in sites-available

sudo nano /etc/nginx/sites-available/osrm.conf

Now fill in the content:

upstream osrm {
    server 0.0.0.0:5000;
}

server {
    listen 80;
    server_name your_IP_or_DNS;

    location / {
        proxy_pass http://osrm/;
        proxy_set_header Host $http_host;
    }
}

Then we should activate this configuration, by creating a link to sites-enabled.

cd /etc/nginx/sites-enabled
sudo ln -s /etc/nginx/sites-available/osrm.conf

Don’t forget to test the configuration. It should pass the syntax check.

nginx -t

Reload the configuration of Nginx

sudo service nginx reload

and start the server

sudo service nginx start

Open ports

Maybe seems stupid, but please be sure that your machine has inbound ports open for port 80 and/or 443.

Execute OSRM backend as Linux Daemon

We need to create first the service file

sudo nano /etc/systemd/system/osrm.service

Then fill in the content

[Unit]
Description=Daemon for osrm backend

[Service]
ExecStart= /usr/local/bin/osrm-routed /home/osrm/osrm/map.osrm
WorkingDirectory=/home/osrm/osrm/
Restart=always
User=osrm

[Install]
WantedBy=multi-user.target

Please take into consideration the folder structure discuss previously. So as you can see we have a Service block where we specify the start command, but using absolute path osrm-routed /home/osrm/osrm/map.osrm. Then the working directory which in our case is ~/osrm.

Press CTRL+X and save.

Enable the service. It will start automatically on boot, after that.

$ sudo systemctl enable osrm.service

Check status/start/stop/restart

$ sudo systemctl {status|start|stop|restart} osrm

A complete list with all available directives that can be used inside the service file can be found here

Test the api

curl "http://your_IP_or_DNS/route/v1/driving/route/v1/driving/source_longitude,source_latitude;destination_longitude,destination_latitude?steps=true&alternatives=true&geometries=geojson"

Official documentation from OSRM API can be found here

Newsletter


Related Posts

How to launch a 6 figures startup with 0$ investment

Are you curious how to launch a startup in the fast and effective way? Here's not the answer, but you can understand how to achieve it

Resources to generate free legal pages for your website

Are you looking for resources to generate free legal pages for your website

Netopiajs library for nodejs

Unofficial library of Netopia to integrate with Nodejs

Where to find free assets and images list

Find a multitude of places with free assets and images for your project

Convert bson file to json with javascript

How to convert bson file to json with javascript with a simple script file

Managerflota idea validation

Managerflota idea validation thread. Manage the car hailing business in one web app.

Generate hexagons in JS based on center coordinates and radius

How to generate hexagons in javascript based on the center point coordinates and radius length

How to generate referral codes in javascript

How to generate referral codes in javascript very fast with less code

Loop over directories in bash and execute commands

How to loop over directories in bash and execute multiple commands

Get your Jenkins Passwords from secrets

How to get your Jenkins passwords from your secrets credentials. Follow this simple tutoriale and find your password or ssh private key.