I'm trying to install the Q&A platform using :
CREATE USER root@bimberspot IDENTIFIED BY '.....';
GRANT ALL ON qpixel_dev.* TO root@bimberspot;
GRANT ALL ON qpixel_test.* TO root@bimberspot;...
after
rails db:create
Lost connection to MySQL server at 'reading initial communication packet', syste m error: 0
Couldn't create 'qpixel_dev' database. Please check your configuration....
I think my problem is
my config/database.yml :
check :
default: &default
adapter: mysql2
encoding: utf8mb4
collation: utf8mb4_unicode_ci
host: 127.0.0.1
port: 3306
Change these credent...