Mysql
 sql >> Database >  >> RDS >> Mysql

Corretta configurazione di MySQL per il file Ruby on Rails Database.yml

Dovresti separare l'host dal numero di porta. Potresti avere qualcosa, come:

development:
  adapter: mysql2
  encoding: utf8
  database: my_db_name
  username: root
  password: my_password
  host: 127.0.0.1
  port: 3306