NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Hello, I have been trying to set up an OSM tile server using the instructions from the following website: http://tiledrawer.com/

I've followed them exactly, but after setting up and running my Amazon ec2 instances and visiting the appropriate address for the instance, all I get is the "1. Installing Software (setup.sh)" screen. I've run this multiple times for hours, but it never downloads the software.

I am using the free t1.micro servers provided by Amazon. So far, I have used ami-6fa27506 and ami-d0f89fb9 images for the servers, to no avail. The map I am downloading is 11 MB of OSM data, according to the tile drawer website.

Here is the User Data TileDrawer has me input:

#!/bin/sh -ex

# Download 11 MB of OSM data from 1 extract.

curl -s http://tiledrawer.com/scripts/script-128JZs.sh.txt | /bin/sh -ex

I am quite the newb, and I simply do not know what I can do or what is causing the issue.

asked 13 Apr '13, 23:32

MatThePhat's gravatar image

MatThePhat
36223
accept rate: 0%

edited 13 Apr '13, 23:36


The script you are using is attempting to download using an old URL. When OSM switched to OdBL geofabrik (the extract provider you are using) re-organized their URLs. The current link for geofabrik's connecticut extract is http://download.geofabrik.de/north-america/us/connecticut-latest.osm.pbf and you are using http://download.geofabrik.de/osm/north-america/us/connecticut.osm.pbf

You could modify the script to download from the new path, or ask Michal Migurski to update the URLs.

permanent link

answered 14 Apr '13, 04:54

pnorman's gravatar image

pnorman
2.4k52140
accept rate: 18%

Interesting. So I input the script directly into the "user data" section so it wasn't trying to access some text file (removing curl as well), only this time I changed the url to the provided one. Unfortunately, it still seems to have the same problem. same screen stuck on installing software.

(15 Apr '13, 01:46) MatThePhat

I think that the problem is asking for 11 MB of OSM data in one hit will cause the server to reject the request as too large. You need to reduce the size of the area that you are requesting (i.e. the number of tiles). It looks like the script that you are using does not handle this refusal and just keeps retrying, which is why it sits there for hours.

permanent link

answered 13 Apr '13, 23:56

Feilipu's gravatar image

Feilipu
90239
accept rate: 10%

Any nudges toward areas of the internet that would elaborate on where I could start or how I would go about doing that perchance?

(15 Apr '13, 01:46) MatThePhat

In light of the first answer, I'm not sure if my idea is correct. Maybe somebody can confirm the max data size request that server will accept. Good luck!

(15 Apr '13, 02:30) Feilipu
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×204
×61
×4
×2

question asked: 13 Apr '13, 23:32

question was seen: 4,782 times

last updated: 09 Jul '14, 10:26

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum