Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. default: &default
  2. adapter: postgresql
  3. encoding: unicode
  4. pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
  5. username: simpleblog
  6. password: <%= ENV['SIMPLEBLOG_DATABASE_PASSWORD'] %>
  7.  
  8. development:
  9. <<: *default
  10. database: simpleblog_development
  11.  
  12. test:
  13. <<: *default
  14. database: simpleblog_test
  15.  
  16. production:
  17. <<: *default
  18. database: simpleblog_production
  19.  
  20. # IPv4 local connections:
  21. host all all 127.0.0.1/32 md5
  22. # IPv6 local connections:
  23. host all all ::1/128 md5
  24. # Allow replication connections from localhost, by a user with the
  25. # replication privilege.
  26. host replication all 127.0.0.1/32 md5
  27. host replication all ::1/128 md5
  28.  
  29. rake aborted!
  30. PG::ConnectionBad: fe_sendauth: no password supplied
  31.  
  32. Tasks: TOP => db:migrate
  33. (See full trace by running task with --trace)
  34.  
  35. rake aborted!
  36. PG::ConnectionBad: ▒▒▒▒▒: ▒▒▒▒ "roman" ▒▒ ▒▒▒▒▒▒▒▒▒▒
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement