Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在创建预定的 MySQL 备份,然后使用 PHP 通过 FTP 将它们发送到另一台测试服务器。我需要知道是否有可以运行的程序来恢复我的其他服务器上的文件,但使用计划的恢复?
谢谢
您可以创建一个启动 shell 代码的 CRON 作业。
例如,如果你想注入一个备份数据库:
mysql -u user -ppassword database < yourbackupfile.sql
现在如果你想创建一个转储:
mysqldump -u user -ppassword database > yourbackupfile.sql