Deploy to server : getting FATAL error

Hi, I am trying to deploy the bot to a server postgres as db for both rasa and rasax. This is what I have:

  type: sql
  dialect: "postgresql"
  url: localhost
  port: 5432
  username: rasa
  password: "rasa123"
  db: rasa
  login_db: login_db

I have created a user rasa with password rasa123. Created two dbs: rasa and login_db as postgres user and granted all privileges to these two dbs to user rasa.

I am getting the following error:

WARNING  rasa.core.tracker_store  - (psycopg2.OperationalError) FATAL:  password authentication failed for user "postgres"
FATAL:  password authentication failed for user "postgres"

Any idea why?

Hi @psds01, could you try again but removing the login_db: login_db line?

Misunderstood. TrackerStores are only possible in deploy mode ā€“ with docker.

1 Like

@psds01 : Can you elaborate further. Iā€™m facing the same issue. How did you solve this? Do you have an example?