将远程数据库同步到本地?

发布于 2024-10-15 14:52:49 字数 217 浏览 2 评论 0原文

我希望我可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-10-22 14:52:49

想通了:

ssh [email protected] mysqldump -u user -ppass remote_db | mysql -u user -ppass local_db

Figured it out:

ssh [email protected] mysqldump -u user -ppass remote_db | mysql -u user -ppass local_db
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文