ruby on rails mysql production replication
这个项目是一个克隆的回购,我希望能够在本地复制mysql数据库的生产文件。我可以运行应用程序但是,我错过了很多资产。我列出了一些有关以下应用程序内容的资源。如果我需要添加任何其他内容以更好地帮助您,请告诉我。感谢
我已经看过这个thread ..我以root身份运行了所有命令,因此我认为该链接不适用于此问题。
的.bash_profile
export HUB_test_DB="hub_test"
export HUB_test_USER="hub_test"
export HUB_test_PASS="whatevs"
export HUB_DEV_DB="hub_development"
export HUB_DEV_USER="hub_development"
export HUB_DEV_PASS="whatevs"
Mysql命令
mysql -u root -p THEROOTPASSWORD 28
CREATE USER 'hub_test'@'localhost' IDENTIFIED BY 'whatevs';
CREATE USER 'hub_development'@'localhost' IDENTIFIED BY 'whatevs';
grant all privileges on hub_test.* to hub_test@localhost;
grant all privileges on hub_development.* to hub_development@localhost;
flush privileges;
测试数据库尚未真正使用。
复制数据库的命令
mysql -u $HUB_DEV_USER -p $HUB_DEV_DB < db/backup/production-backup-latest.sql
Mysql> show databases;
-information_schema
MySQL的
performance_schema
测试
用户和权限