Postanowiłem zmienić bazę danych w instniejącym projekcie z mysql na postgresql. Używam rails 5.
Nie zależy mi na danych więc zmieniłem database.yml:
default: &default
adapter: postgresql
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.postgresql
test:
<<: *default
database: db/test.postgresql
production:
<<: *default
database: db/production.postgresql
I wykonałem
rails db:reset db:migrate
Jednak dostaję błąd
rails aborted!
PG::ConnectionBad: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket “/var/run/postgresql/.s.PGSQL.5432”?
Zrestartowałem środowisko i serwer, jednak nie przyniosło to skutku? Macie może pomysł jak to rozwiązać?