I see this error when I startup mysql:
mysql
ERROR 1045 (28000): Access denied for user 'jwan'@'localhost' (using password: NO)
This is my mysql version:
mysql --version
mysql  Ver 14.14 Distrib 5.7.23
What can I do? Is using sudo bad here to do?
I inherited this rails project and this is my database.yml:
development:
  adapter: mysql2
  database: some_database
  username: root
  password:
  host: localhost
  port: 3306
 
    