5

I want to run a tiles server with OSM data

i want to install mod_tile so i followed the mod_tile setup

But when i do the

./configure

It says

checking for getloadavg... yes
checking for apxs... no
checking for apxs2... no
checking for /opt/local/apache2/bin/apxs... no
configure: error: Could not find apxs on the path.

any idea what went wrong?

chiranjeevigk
  • 1,636
  • 1
  • 23
  • 43

3 Answers3

9

According to the Internets you need to install apache2-dev (previously known as apache2-devel). The apx binary should then be located under /usr/bin/apxs2 or /usr/sbin/apxs2.

Note: For building a tile server you should follow the guide on switch2osm.

scai
  • 20,297
  • 4
  • 56
  • 72
2

For Ubuntu

sudo apt-get install apache2-devel

For RedHat & CentOs

yum install httpd-devel

Venkat G
  • 47
  • 4
0

SUSE has removed the SDK ISO from the area where you download the server ISO. Check out this page.

I consider their page as very complicated and not logical so play a bit around but you find it in the end.

When you are looking for a current version then it helps you check Last 6 months

Peter VARGA
  • 4,780
  • 3
  • 39
  • 75