Install OSM Nominatim in Ubuntu LTS 18.04 for private reverse geocoding

I recentely found out about OpenStreetMap Nominatim and its reverse geocoding feature. And same as OSM it can be installed on a local server. I followed the installation steps documented in online manual and everything runs very smoothly. #!/bin/bash # steps for 18.04 LTS with latest updates # run as root export USERNAME=nominatim export USERHOME=/srv/nominatim

Install OSM Nominatim in Ubuntu LTS 18.04 for private reverse geocoding Read More »

add systray to elemtary os

Elementary OS 5 comes with a very limited systray functionality that needs to be fixed. For this you need to install wingpanel-indicator-ayatana that can be installed via a PPA and change autostart config of the indicator app. Install wingpanel-indicator-ayatana Change autostart config Open the config file with and change the line to Then reboot your

add systray to elemtary os Read More »

redis-server on ubuntu 18.04

After installing redis on my machine I received the following error message: redis-server.service: Can’t open PID file /var/run/redis/redis-server.pid (yet?) after start: No such file or directory This message comes because redis refuses to start with disabled ipv6. To get it running you have to remove “::1” from “bind 127.0.0.1 ::1” in /etc/redis/redis.conf. Then redis starts

redis-server on ubuntu 18.04 Read More »