YongGoose commented on issue #943:
URL: 
https://github.com/apache/incubator-baremaps/issues/943#issuecomment-2652455222

   @bruno-scorzafave 
   
   The error message explains that authentication failed in the `PostgreSQL` 
database.
   
   In my case, I ran the following command using `Docker`, and everything 
worked fine. 
   ```
   docker run \
     --name baremaps \
     --publish 5432:5432 \
     -e POSTGRES_DB=baremaps \
     -e POSTGRES_USER=baremaps \
     -e POSTGRES_PASSWORD=baremaps \
     -d kartoza/postgis:16-3.4
   ```
   
   Looking at the code below, you can see that both the `username` and 
`password` are set to `baremaps`. 
   It seems that keeping these values as they are is necessary for everything 
to work properly.
   
   - 
https://github.com/apache/incubator-baremaps/blob/28e5bb4b9d1693d297dc849074b9126dd392ce4d/basemap/config.js#L19
   
   If another error occurs, it would be helpful to share the entire process, 
including the exact command you used. 🙂


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to