sql >> データベース >  >> RDS >> Mysql

mysqlデータベースをあるサーバーから別のサーバーに移動する

    サイトがライブサイトではなく、ダウンタイムが問題にならない場合は、以下を試すことができます

    #step1: take a dump of your db
    >mysqldump –-user root –-password=myrootpassword db_test > db_test.sql
    
    #step2: zip the .sql file - this is optional
    >gzip db_test.sql
    
    #step3: transfer the file to AWS using .pem file
    >scp -i myAmazonKey.pem db_test.sql.gz [email protected]<ur_ip_address>:~/.
    
    #step4: login to your AWS instance 
    
    #step5: unzip the file
    >gunzip db_test.sql.gz
    
    #step6: import the db to your AWS mysql instance
    >mysql -u username -p password db_name < db_test.sql 
    


    1. mysqlで20桁を超える整数が必要な場合はどうすればよいですか?

    2. plsqlでforループを使用して更新

    3. Mysql HighUPDATESELECTがラグを引き起こしている

    4. 現在の日付に従ってデータを並べ替える