将远程数据库同步到本地?
我希望我可以使用 shell 脚本将 sql 转储从我的生产站点拉到我的本地数据库中。理想情况下,我希望能够运行这样的东西:
sync_site example_com example_local
其中第一个参数是生产数据库,第二个参数是本地数据库。远程数据库始终位于 SSH 后面的同一服务器上,并具有已知的 MySQL 凭据。
I'm hoping I can use a shell script that will pull a sql dump down from my production site and into my local database. Ideally, I'd like to be able to run something like this:
sync_site example_com example_local
Where the first argument is the production database and the second is the local database. The remote database is always on the same server, behind SSH, with known MySQL credentials.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了:
Figured it out: