बैकअप / पुनर्स्थापित उपयोगकर्ता / पासवर्ड / विशेषाधिकार


16

मैं एक सर्वर से दूसरे में जा रहा हूं और मैं अपने MySQL सर्वर से सभी डेटाबेस + उपयोगकर्ता / विशेषाधिकार / पासवर्ड का बैकअप लेना चाहता हूं। मैंने एक डेटाबेस का उपयोग करके बैकअप करने के लिए पाया mysqldump, लेकिन मैं यह पता नहीं लगा सकता कि सभी उपयोगकर्ताओं और दिए गए विशेषाधिकारों का बैकअप कैसे लें। क्या इसे प्राप्त करने का कोई तरीका है या क्या मुझे इसे नए सर्वर पर स्थापित करना है?


क्या आप MySQL का एक ही संस्करण चलाने वाले डेटा को किसी अन्य सर्वर पर ले जा रहे हैं?
रोलैंडमाइसीडीडीबीए

जवाबों:


16

'Mysql' डेटाबेस में उपयोगकर्ता / विशेषाधिकार / पासवर्ड शामिल हैं। इसलिए अन्य डेटाबेस के साथ mysql डेटाबेस का डंप लें

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

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

इन mysql डेटाबेस तालिकाओं में अनुदान जानकारी होती है

उपयोगकर्ता: उपयोगकर्ता खाते, वैश्विक विशेषाधिकार और अन्य गैर-विशेषाधिकार कॉलम।

db: डेटाबेस-स्तरीय विशेषाधिकार।

tables_priv: तालिका-स्तरीय विशेषाधिकार।

कॉलम_प्रिव: स्तंभ-स्तरीय विशेषाधिकार।

procs_priv: संग्रहीत कार्यविधि और फ़ंक्शन विशेषाधिकार।

के साथ क्रॉस चेक बहाल करने के बाद

select Host, user, password from user ;

SHOW GRANTS FOR 'user'@'localhost';

7
सावधान। यदि आप इसे MySQL के नए संस्करण में लोड कर रहे हैं, तो mysql.userस्कीमा परिवर्तन के कारण डंप विफल हो सकता है।
रिक जेम्स

1
@ रिकजम्स: यदि हम एक नए संस्करण में माइग्रेट करना चाहते हैं और उपयोगकर्ताओं को पुनर्स्थापित करना चाहते हैं तो हमें क्या करना चाहिए?
ब्रुनेक

1
mysql_upgradeस्कीमा परिवर्तनों का ध्यान रखने के लिए एक स्क्रिप्ट है। लेकिन यह उम्मीद करता है कि आप एक बार में केवल एक बड़ा बदलाव कर सकते हैं, और जगह में, फिर से लोड नहीं कर रहे हैं। इस पर शोध करें। (क्षमा करें, मुझे उन्नयन के क्षेत्र में अनुभव नहीं है।)
रिक जेम्स

1
पुनर्स्थापित करने के बाद आपको flush privileges;नए mysql पर भी आवश्यकता होगी / होगी । जैसे mysql -u root -p -e'flush privileges;' यह आपके पुराने सर्वर से रूट पासवर्ड बनने के लिए आपके नए सर्वर पर अपना रूट mysql पासवर्ड भी सेट करेगा / सकती है इसलिए सुनिश्चित करें कि आप जानते हैं कि वह क्या है।
meesern

0

यह PHP स्क्रिप्ट मूल प्रश्न के समान काम करने की आवश्यकता से प्रेरित थी जहां प्रश्न में सर्वर मारियाडीबी के विभिन्न संस्करण चला रहे थे। चूंकि यह 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);}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.