You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"log":"2020-07-26 11:04:43.854 UTC [8285] PANIC: could not write to file "pg_wal/xlogtemp.8285": No space left on device\r\n","stream":"stdout","time":"2020-07-26T11:04:43.855058701Z"}
{"log":"2020-07-26 11:04:43.865 UTC [27] LOG: server process (PID 8285) was terminated by signal 6: Aborted\r\n","stream":"stdout","time":"2020-07-26T11:04:43.865458059Z"}
as per the documentation it suggests doing the following:
docker run -t -v /home/ec2-user/nominatimdata:/data nominatim sh resumebuild.sh postgresdata
is it possible to run a shell script without it in the image? Would rebuilding the nominatim image affect the data? Or is it safe to rebuild it and do the following command? after of course adding this to the dockerfile: COPY resume.sh /app/resumebuild.sh
docker run -t -v /home/ec2-user/nominatimdata:/data nominatim sh app/resumebuild.sh postgresdata
I'm running this on an EC2 instance on AWS if that makes any difference.
This discussion was converted from issue #138 on May 13, 2021 07:21.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
{"log":"2020-07-26 11:04:43.854 UTC [8285] PANIC: could not write to file "pg_wal/xlogtemp.8285": No space left on device\r\n","stream":"stdout","time":"2020-07-26T11:04:43.855058701Z"}
{"log":"2020-07-26 11:04:43.865 UTC [27] LOG: server process (PID 8285) was terminated by signal 6: Aborted\r\n","stream":"stdout","time":"2020-07-26T11:04:43.865458059Z"}
as per the documentation it suggests doing the following:
./utils/setup.php --index --create-search-indices --create-country-names
but it crashed at rank 26 so I will pass --index-noanalyse also.
I was wondering if the following bash script would work:
file: resumebuild.sh
then run:
docker run -t -v /home/ec2-user/nominatimdata:/data nominatim sh resumebuild.sh postgresdata
is it possible to run a shell script without it in the image? Would rebuilding the nominatim image affect the data? Or is it safe to rebuild it and do the following command? after of course adding this to the dockerfile: COPY resume.sh /app/resumebuild.sh
docker run -t -v /home/ec2-user/nominatimdata:/data nominatim sh app/resumebuild.sh postgresdata
I'm running this on an EC2 instance on AWS if that makes any difference.
Beta Was this translation helpful? Give feedback.
All reactions