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 バックアップを作成し、FTP 経由で PHP を使用して別のテスト サーバーに送信しています。スケジュールされた復元を使用して他のサーバーにファイルを復元するために実行できるプログラムがあるかどうかを知る必要がありますか?
ありがとう
シェル コードを起動する CRON ジョブを作成できます。
たとえば、バックアップ データベースを挿入する場合は、次のようにします。
mysql -u user -ppassword database < yourbackupfile.sql
ダンプを作成する場合は、次のようにします。
mysqldump -u user -ppassword database > yourbackupfile.sql