Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. PG::ConnectionBad: fe_sendauth: no password supplied
  2.  
  3. Daves-MBP-2:project dave$ ps aux | grep postgres
  4. postgres 670 0.0 0.0 2466764 1816 ?? S Fri10AM 0:00.33 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter
  5. postgres 658 0.0 0.0 2514516 3032 ?? S Fri10AM 0:01.31 /usr/sbin/distnoted agent
  6. postgres 657 0.0 0.0 2542724 6336 ?? S Fri10AM 0:05.69 /usr/libexec/trustd --agent
  7. postgres 656 0.0 0.0 2545304 6676 ?? S Fri10AM 0:04.28 /usr/libexec/lsd
  8. postgres 655 0.0 0.0 2515008 2596 ?? S Fri10AM 0:00.07 /usr/sbin/cfprefsd agent
  9. postgres 240 0.0 0.0 2508940 920 ?? Ss Fri10AM 0:01.06 postgres: stats collector process
  10. postgres 239 0.0 0.0 2653940 1860 ?? Ss Fri10AM 0:00.64 postgres: autovacuum launcher process
  11. postgres 238 0.0 0.0 2653940 832 ?? Ss Fri10AM 0:01.00 postgres: wal writer process
  12. postgres 237 0.0 0.0 2653940 900 ?? Ss Fri10AM 0:01.02 postgres: writer process
  13. postgres 236 0.0 0.0 2653940 896 ?? Ss Fri10AM 0:00.04 postgres: checkpointer process
  14. postgres 233 0.0 0.0 2508940 728 ?? Ss Fri10AM 0:00.00 postgres: logger process
  15. postgres 108 0.0 0.0 2654196 3372 ?? Ss Fri10AM 0:00.32 /Library/PostgreSQL/9.6/bin/postmaster -D/Library/PostgreSQL/9.6/data
  16. dave 68244 0.0 0.0 2442020 2012 s000 S+ 4:28PM 0:00.00 grep postgres
  17.  
  18. # SQLite version 3.x
  19. # gem install sqlite3
  20. #
  21. # Ensure the SQLite 3 gem is defined in your Gemfile
  22. # gem 'sqlite3'
  23. #
  24. default: &default
  25. adapter: sqlite3
  26. pool: 5
  27. timeout: 5000
  28.  
  29. development:
  30. adapter: postgresql
  31. encoding: unicode
  32. database: "mydatabase"
  33.  
  34.  
  35. # Warning: The database defined as "test" will be erased and
  36. # re-generated from your development database when you run "rake".
  37. # Do not set this db to the same as development or production.
  38. test:
  39. <<: *default
  40. database: db/test.sqlite3
  41.  
  42. production:
  43. adapter: postgresql
  44. encoding: unicode
  45. url: "HEROKU URL"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement