首页 > 解决方案 > 如何使用 Laravel 为 PostgreSQL 进行每日数据库备份?

问题描述

我在网上看过本教程https://www.itsolutionstuff.com/post/laravel-automatic-daily-database-backup-tutorialexample.html关于如何每天为 mysql 备份数据库。如何在 postgreSQL 中做到这一点?

MySQL

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Carbon\Carbon;

class DatabaseBackUp extends Command
{
/**
 * The name and signature of the console command.
 *
 * @var string
 */
protected $signature = 'database:backup';

/**
 * The console command description.
 *
 * @var string
 */
protected $description = 'Command description';

/**
 * Create a new command instance.
 *
 * @return void
 */
public function __construct()
{
    parent::__construct();
}

/**
 * Execute the console command.
 *
 * @return int
 */
public function handle()
{
    $filename = "backup-" . Carbon::now()->format('Y-m-d') . ".gz";

    $command = "mysqldump --user=" . env('DB_USERNAME') ." --password=" . env('DB_PASSWORD') . " --host=" . env('DB_HOST') . " " . env('DB_DATABASE') . "  | gzip > " . storage_path() . "/app/backup/" . $filename;

    $returnVar = NULL;
    $output  = NULL;

    exec($command, $output, $returnVar);
}

}

标签: laravelpostgresql

解决方案


这个备份包是你的朋友;)


推荐阅读