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
I'm trying to get this work and similar to Issue #16, I'm encountering a "500 Internal Server Error". I ran it in non-daemon mode (i.e., without -d), and I'm getting lots of messages on the screen. I noticed this message before I accessed the site:
Afterwards I accessed http://localhost:5000 and I got this message:
postgres_1 | 2022-08-19 11:17:32.171 UTC [28] FATAL: password authentication failed for user "dna_sim"
postgres_1 | 2022-08-19 11:17:32.171 UTC [28] DETAIL: Role "dna_sim" does not exist.
postgres_1 | Connection matched pg_hba.conf line 100: "host all all all scram-sha-256"
web_1 | [2022-08-19 11:17:32,172] ERROR in app: Exception on / [GET]
web_1 | Traceback (most recent call last):
web_1 | File "/usr/local/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 3280, in _wrap_pool_connect
web_1 | return fn()
...
web_1 | conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
web_1 | psycopg2.OperationalError: connection to server at "postgres" (172.30.0.3), port 5432 failed: FATAL: password authentication failed for user "dna_sim"
I've tried both the default password stored in docker-compose.yml and test1337 from Issue #16.
I then started up the container and ran docker exec -it mesa_dna_sim_postgres_1 bash (as mentioned in Issue #16) to try to change the password and I got this:
bash-5.1# psql -U postgres
psql (14.5)
Type "help" for help.
postgres=# \password dna_sim
Enter new password for user "dna_sim":
Enter it again:
ERROR: role "dna_sim" does not exist
so, it seems like this user does not exist? I'm not sure what I can do next... Any suggestions would be appreciated; thank you!
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to get this work and similar to Issue #16, I'm encountering a "500 Internal Server Error". I ran it in non-daemon mode (i.e., without
-d
), and I'm getting lots of messages on the screen. I noticed this message before I accessed the site:Afterwards I accessed
http://localhost:5000
and I got this message:I've tried both the default password stored in
docker-compose.yml
andtest1337
from Issue #16.I then started up the container and ran
docker exec -it mesa_dna_sim_postgres_1 bash
(as mentioned in Issue #16) to try to change the password and I got this:so, it seems like this user does not exist? I'm not sure what I can do next... Any suggestions would be appreciated; thank you!
The text was updated successfully, but these errors were encountered: