gpt4 book ai didi

php - Laravel 5.6 - 将 mySql 数据库备份到 S3?

转载 作者:行者123 更新时间:2023-11-29 07:24:37 26 4
gpt4 key购买 nike

我正在尝试像这样将整个 mysql 数据库备份到 S3:

<?php
namespace App\Console\Commands;

use Carbon\Carbon;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Storage;
use Symfony\Component\Process\Process;

class DatabaseBackup extends Command {
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'backup:database';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Take a backup of the entire DB and upload to S3.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$date = Carbon::now()->format('Y-m-d_h-i');
$user = env('DB_USERNAME');
$password = env('DB_PASSWORD');
$database = env('DB_DATABASE');
$command = "mysqldump --user={$user} -p{$password} {$database} > {$date}.sql";
$process = new Process($command);
$process->start();
while ($process->isRunning()) {
$s3 = Storage::disk('s3');
$s3->put('gallery-app-db/' . $date . ".sql", file_get_contents("{$date}.sql"));
unlink("{$date}.sql");
}
}
}

但是当运行 php artisan backup:database 然后查看 bucket .sql 文件并在本地下载 .sql 文件时,它显示如下而不是实际的数据库/表在文件:

enter image description here

知道如何让 .sql 转储实际工作并备份真实数据库及其所有表而不是使用文件吗?

最佳答案

假设您的密码包含一个结束 shell 命令的字符,例如 ; & | && ||

或结束命令行参数的字符,如空格。

或一些其他特殊字符,如任何类型的引号,或 $!

如果不引用密码,它可能会生成截断的命令。

我建议将您的用户名和密码放在一个选项文件中,然后使用 --defaults-file=...

引用该选项文件
$command = "mysqldump --defaults-file=mysql-dump.cfg {$database} > {$date}.sql";

mysql-dump.cfg 应该包含如下内容:

[client]
user = <your user>
password = <your password>

这也有助于避免让任何可以运行 ps 的人都能清楚地看到您的密码。

关于php - Laravel 5.6 - 将 mySql 数据库备份到 S3?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54525176/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com