ব্যবহারকারীগণ / পাসওয়ার্ড / সুবিধাগুলি ব্যাকআপ / পুনরুদ্ধার করুন


16

আমি একটি সার্ভার থেকে অন্য সার্ভারে চলেছি এবং আমি আমার মাইএসকিউএল সার্ভার থেকে সমস্ত ডাটাবেস + ব্যবহারকারী / সুবিধাদি / পাসওয়ার্ড ব্যাকআপ করতে চাই। আমি একটি ডাটাবেস ব্যবহার করে ব্যাকআপ পেয়েছি mysqldump, কিন্তু আমি কীভাবে সমস্ত ব্যবহারকারী এবং প্রদত্ত সুবিধাগুলি ব্যাকআপ করতে পারি তা বুঝতে পারি না। এটি অর্জন করার কোনও উপায় আছে বা নতুন সার্ভারে আমাকে এটি নতুনভাবে সেট আপ করতে হবে?


আপনি কি মাইএসকিউএল একই সংস্করণ চলমান অন্য সার্ভারে ডেটা সরাচ্ছেন?
রোল্যান্ডোমাইএসকিউএলডিবিএ 16

উত্তর:


16

'মাইএসকিএল' ডাটাবেসে ব্যবহারকারী / অধিকার / পাসওয়ার্ড রয়েছে। সুতরাং অন্যান্য ডাটাবেসগুলির সাথে মাইএসকিএল ডাটাবেসের ডাম্প নিন

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

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

এই mysql ডাটাবেস সারণিতে অনুদানের তথ্য রয়েছে

ব্যবহারকারী: ব্যবহারকারীর অ্যাকাউন্ট, গ্লোবাল সুবিধাগুলি এবং অন্যান্য অ-সুযোগ সুবিধা কলাম।

ডিবি: ডাটাবেস-স্তরের সুবিধা।

tables_priv: টেবিল-স্তরের সুবিধা।

কলাম_প্রাইভ: কলাম-স্তরের সুবিধা।

procs_priv: সঞ্চিত পদ্ধতি এবং ফাংশন সুবিধাসমূহ।

সাথে ক্রস চেক পুনরুদ্ধার করার পরে

select Host, user, password from user ;

SHOW GRANTS FOR 'user'@'localhost';

7
সতর্ক করা. আপনি যদি এটি মাইএসকিউএল এর নতুন সংস্করণে লোড করছেন, mysql.userস্কিমা পরিবর্তনের কারণে ডাম্পটি ব্যর্থ হতে পারে।
রিক জেমস 17

1
@ রিকজেমস: আমরা যদি নতুন সংস্করণে মাইগ্রেট করতে এবং ব্যবহারকারীদের পুনরুদ্ধার করতে চাই তবে আমাদের কী করা উচিত?
brunoqc

1
mysql_upgradeস্কিমা পরিবর্তনের যত্ন নেওয়ার জন্য একটি স্ক্রিপ্ট। তবে এটি প্রত্যাশা করে যে আপনি একবারে কেবলমাত্র একটি বড় পরিবর্তন করছেন, এবং স্থানটিতে, পুনরায় লোড করবেন না। এটি গবেষণা। (দুঃখিত, আপগ্রেডের ক্ষেত্রে আমার অভিজ্ঞতা নেই))
রিক জেমস

1
পুনরুদ্ধার করার পরে আপনার প্রয়োজন হতে পারে flush privileges;নতুন মাইএসকিএল- এও । ভালো লেগেছে mysql -u root -p -e'flush privileges;' এই / আপনার রুট মাইএসকিউএল পাসওয়ার্ড আপনার নতুন সার্ভারে আপনার পুরানো সার্ভার থেকে রুট পাসওয়ার্ড হতে সেট হবে পারে, তাই নিশ্চিত করুন যে আপনি জানেন যে কি হবে।
meesern

0

এই পিএইচপি স্ক্রিপ্টটি মূল প্রশ্নের মতো একই কাজ করার প্রয়োজনের দ্বারা অনুপ্রাণিত হয়েছিল যেখানে প্রশ্নে থাকা সার্ভারগুলি মারিয়াডিবি-র বিভিন্ন সংস্করণ চালাচ্ছে। এটি পিএইচপি হওয়ার কারণে এটি কোনও প্ল্যাটফর্মে কাজ করা উচিত যা পিএইচপি সমর্থন করে (7.৩ বা তার বেশি সংস্করণ)।

<?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.