Reputation: 1666
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?
Upvotes: 5
Views: 8726
Reputation: 21469
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.
Upvotes: 9
Reputation: 5186
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
Upvotes: 0
Reputation: 47
For Ubuntu
sudo apt-get install apache2-devel
For RedHat & CentOs
yum install httpd-devel
Upvotes: 2