Hi,
I am trying to install the overpass API on my server but im getting an error. I'm following these instructions.
After importing a .bz2 file of great Britain (wget -O planet.osm.bz2 "http://download.geofabrik.de/europe/great-britain/england-latest.osm.bz2"
), I'm now trying to populate the database with the following command:
nohup /root/osm-3s_v0.7.3/src/bin/init_osm3s.sh ../root/planet.osm.bz2 `pwd`/../ /root/osm-3s_v0.7.3 &
tail -f nohup.out
But halfway through the import I'm getting the error:
Reading XML file ... elapsed node 2125784163. Flushing to database ...... done.
Reading XML file ... elapsed node 2368197335. Flushing to database ...... done.
Reading XML file ... elapsed node 2598221903. Flushing to database ...... done.
Reading XML file ... finished reading nodes. Flushing to database ...... done.
Reorganizing the database .../root/osm-3s_v0.7.3/src/bin/init_osm3s.sh: line 43: 11607 Broken pipe bunzip2 < $PLANET_FILE
11608 Killed | $EXEC_DIR/bin/update_database --db-dir=$DB_DIR/ $META
Anybody know what's causing this?
asked
25 May '14, 16:22
gmeister4
60●8●8●12
accept rate:
0%
Killed can have many reasons. Maybe you did run out of memory? Check
dmesg
for OOM messages.