ユーザー/パスワード/特権のバックアップ/復元


16

あるサーバーから別のサーバーに移動し、MySQLサーバーからすべてのデータベース+ユーザー/特権/パスワードをバックアップしたい。を使用してデータベースをバックアップすることがわかりましmysqldumpたが、すべてのユーザーと指定された特権をバックアップする方法がわかりません。これを達成する方法はありますか、またはこれを新しいサーバーに新しく設定する必要がありますか?


同じバージョンのMySQLを実行している別のサーバーにデータを移動していますか?
RolandoMySQLDBA

回答:


16

「mysql」データベースには、users / privileges / passwordsが含まれています。だから、他のデータベースと一緒にmysqlデータベースのダンプを取る

mysqldump [options] --all-databases > all_databases_dump.sql

mysqldump -u root -p mysql user > user_table_dump.sql

これらのmysqlデータベーステーブルには許可情報が含まれています

ユーザー:ユーザーアカウント、グローバル権限、およびその他の非権限列。

db:データベースレベルの権限。

tables_priv:テーブルレベルの特権。

columns_priv:列レベルの特権。

procs_priv:ストアドプロシージャと関数の特権。

とのクロスチェックを復元した後

select Host, user, password from user ;

SHOW GRANTS FOR 'user'@'localhost';

7
注意。これをMySQLの新しいバージョンにロードする場合mysql.user、スキーマの変更が原因でダンプが失敗する可能性があります。
リックジェームズ

1
@RickJames:新しいバージョンに移行してユーザーを復元する場合はどうすればよいですか?
brunoqc

1
mysql_upgradeスキーマの変更を処理するスクリプトです。ただし、リロードではなく、一度に1つの大きな変更のみを行い、インプレースで行うことを想定しています。それを研究します。(申し訳ありませんが、アップグレードの分野では経験がありません。)
リックジェームズ

1
復元後flush privileges;、新しいmysqlで必要になる場合があります。mysql -u root -p -e'flush privileges;' このように、新しいサーバーのルートmysqlパスワードを古いサーバーのルートパスワードに設定する可能性があるため、それが何であるかを確認してください。
meesern

0

このPHPスクリプトは、問題のサーバーが異なるバージョンのMariaDBを実行している元の質問と同じことを行う必要性に触発されました。PHPであるため、PHP(バージョン7.3以降)をサポートするプラットフォームで動作するはずです。

<?php
ini_set('display_errors','1');
ini_set('display_startup_errors','1');
error_reporting(E_ALL);

//
// You will want to modify the 4 variables below for your environment
//

$dbuser       = 'root';                   // DB user with authority to SHOW GRANTS from mysql.user
$dbpassword   = 'blahblah';               // password for the DB user
$useroutfile  = '/temp/Users.sql';        // where to write the user file that may be imported on new server
$grantoutfile = '/temp/Grants.sql';       // where to write the grant file that may be imported on new server
$ignore_users = ['root','replication_user'];  // array of users that should NOT be exported

//
// There really should not be any reason to modify anything below this comment 
// but please do browse through it and understand what is being done
//

$dsn = 'mysql:host=localhost;charset=utf8mb4';
$opt = [PDO::ATTR_ERRMODE            => PDO::ERRMODE_EXCEPTION ,
        PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC       ,
        PDO::ATTR_EMULATE_PREPARES   => true                   ,
       ];
try {

    $ourdb = new PDO ($dsn,$dbuser,$dbpassword,$opt);

} catch (PDOException $e) {

    error_log($e);  // log the error so it may be looked at later if necessary
    echo 'Could not connect to the SQL server';
    exit;
}  // end of the try/catch block

$notuser = implode(',',array_map('add_quotes',$ignore_users));

//
// We got connected to the database so now let's make sure we can open the
// output files for writing - note that using mode w will overwrite any
// existing files so we'll always start off cleanly
//

$userout = fopen($useroutfile,'w');

if ($userout === false) {  // could not open the output file for writing for some reason

    error_log('Could not open the output file for writing (' . $useroutfile . ')');
    exit;

}  // end of if we could not open the output file for writing

$grantout = fopen($grantoutfile,'w');

if ($grantout === false) {  // could not open the output file for writing for some reason

    error_log('Could not open the output file for writing (' . $grantout . ')');
    exit;

}  // end of if we could not open the output file for writing

$Query = $ourdb->query("
    SELECT CONCAT('SHOW GRANTS FOR ''', user, '''@''', host, ''';') AS query 
           FROM mysql.user 
           WHERE user NOT IN(" . implode(',',array_map('add_quotes',$ignore_users)) . ")
");
$users = $Query->fetchAll(PDO::FETCH_COLUMN);

foreach ($users as $GrantQ) {  // go through each of the users found

    $UserQ  = $ourdb->query("$GrantQ");  // retrieve the grants for a user
    $grants = $UserQ->fetchAll(PDO::FETCH_COLUMN);

    foreach ($grants as $grant) {  // go through each of the grants found for this user

        if (stripos($grant,'IDENTIFIED BY PASSWORD') === false) {

            fwrite($grantout,$grant . ';' . PHP_EOL);  // write the command to actually do the grant

        } else {

            fwrite($userout,$grant . ';' . PHP_EOL);  // write the command to actually do the grant
}
        }  // end of foreach through the grants found

}  // end of foreach through the queries to show the grants for each user

fwrite($userout ,'FLUSH PRIVILEGES;' . PHP_EOL);  // make sure SQL knows about the new users and privileges
fwrite($grantout,'FLUSH PRIVILEGES;' . PHP_EOL);  // make sure SQL knows about the new users and privileges
fclose($userout);   // close our output file
fclose($grantout);  // close our output file
echo 'The grants for ' . count($users) . ' users were written to ' . $useroutfile . PHP_EOL;

function add_quotes($str) {return sprintf("'%s'", $str);}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.