-
|
When using my nominatim server API, all endpoints like /status, /reverse, /lookup work as they should. Im facing an issue where the http://MYIP/nominatim/search endpoint returns: No matter what kind of parameters I use. When testing the nominatim CLI with /etc/systemd/system/nominatim.service Where could this issue be coming from, I can provide more information if needed, thank you in advance! :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
This means that Nominatim couldn't find or access the table is needed in the service file. We really should add that in the docs somewhere. |
Beta Was this translation helpful? Give feedback.
This means that Nominatim couldn't find or access the table
search_nameand thinks that your database is running in reverse-only mode, see also #3752. It's most likely the same issue as described in that ticket: your postgres wasn't fully running when the service starts up. Restarting the service should fix the problem. To permanently fix it, something along the lines ofis needed in the service file. We really should add that in the docs somewhere.