How to Backup and Restore a MySQL/MariaDB Database

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

ความคิดเห็น • 30

  • @mattsnow7803
    @mattsnow7803 4 ปีที่แล้ว

    Really enjoy watching your videos. It's really informative and easy to follow. Keep it coming!

  • @HallucinVIII
    @HallucinVIII 6 ปีที่แล้ว +3

    Thank you for your great videos.
    Every time I see the term drop tables all I can think of is little Bobby Tables from xkcd.
    I imagine that I'm not the only one.

  • @acidrazor
    @acidrazor 7 ปีที่แล้ว +1

    I would love more tutorials for production/real world scenarios for n00b DBAs or someone setting out to build their own cluster etc.

    • @tutoriaLinux
      @tutoriaLinux  7 ปีที่แล้ว +2

      Jeff, the guy who does the kernel panic podcast with me, REALLY knows MySQL...maybe I can convince him to do a few videos with me, setting up a highly available production cluster and talking about all the stuff that's important, all the gotchas, and all the hard-earned lessons. And how to get replication working again after your slave_exec_log_position gets all screwed up and you have evil parts of the binlog that have to be skipped before MySQL will work again. In production. ermagerd flashbacks

  • @runnerwannabe90
    @runnerwannabe90 7 ปีที่แล้ว +7

    Thanks for you videos.
    But in this instance I disagree with this approach (i.e. the use of mysqldump), I would like to propose the use of Percona's Xtrabckup or the tool Mylvmbackup.
    These should be the de facto standard, tools for MySQL backups backups and restoring.
    Sure for your example, the a small database and my proposal is overkill, but if one of viewers is on the road to managing larger databases, least they can hit the ground running or learning and doing proper DBA tools / methodologies.
    HTH

    • @tutoriaLinux
      @tutoriaLinux  7 ปีที่แล้ว +6

      Thanks, that's a valuable tip. I actually wasn't familiar with Xtrabackup -- the mechanism I saw used for large-ish databases (2-5TB) was streaming replication to other database nodes (hot standby, business intelligence, a 'backup' node where we actually run mysqldump, etc.). We also had frequent disk snapshots on the DB instances, but of course that's primarily useful as a last resort. Thanks again for the tip; it helps to hear from someone who's a better DBA than me!

  • @jordannash4420
    @jordannash4420 5 ปีที่แล้ว

    Hi I'm stuck at 6:47 and get a permission denied statement when I execute the mysqldump. I'm doing this on Ubuntu 18.04.2 LTS. Anybody run into the same problem whilst following all the steps? Were you able to solve it?

    • @jordannash4420
      @jordannash4420 5 ปีที่แล้ว

      Ok I solved it. Answer in this link. askubuntu.com/questions/1146220/permission-denied-after-trying-to-create-mysqldump-even-after-creating-my-cnf?noredirect=1#comment1905374_1146220

    • @baniputri96
      @baniputri96 4 ปีที่แล้ว

      Hi Jordan, /home//backups/db

  • @rogernevez5187
    @rogernevez5187 6 ปีที่แล้ว

    This method is also very fast for large databases (10Mi rows)?

  • @ko95
    @ko95 5 ปีที่แล้ว

    how do you keep database and web app files in sync? dump the sql to a version controlled git folder?

  • @xavierl3367
    @xavierl3367 7 ปีที่แล้ว

    Great guide, and excuse me if this has been mentioned before but how about a guide on tuning mysql. Oh and tuning mysql to run along side apache.

  • @Dipesh155
    @Dipesh155 3 ปีที่แล้ว

    How to migrate mysql user, host and password from old to new server?

  • @sammygun84
    @sammygun84 5 ปีที่แล้ว

    What your best games on linux?

  • @JohnSmith-zl8rz
    @JohnSmith-zl8rz 3 ปีที่แล้ว

    why not just this? mysqldump -u username -p database_name > source_dump.sql why the --add-drop-table , I think by default drop table is add it.

  • @uchitesting
    @uchitesting 5 ปีที่แล้ว

    What about crontab -e
    Didn't have to deal with that for a while but if I'm correct this is how crontab should be edited.
    Anyway thanks for the video. It showed very useful. I'm working in a project where many people are involved and shit happened so here I am to quickly know how to backup my stuff.

  • @Дмитрий-с3п4ы
    @Дмитрий-с3п4ы 2 ปีที่แล้ว

    9:34 I got BAGUETTE from this one xD

  • @flyingzeppo
    @flyingzeppo 7 ปีที่แล้ว

    Very helpful. Thank you.

  • @Linuxbabeofficial
    @Linuxbabeofficial 5 ปีที่แล้ว

    --add-drop-table is on by default. You don't need to type it :)

    • @uchitesting
      @uchitesting 5 ปีที่แล้ว

      just to be sure and on the safe side. Tomorrow they decide it is no more the default. Your script is still behaving as expected.
      Let me wonder why would there be an option then.

  • @s.nikolic497
    @s.nikolic497 7 ปีที่แล้ว

    great video ... thank you

  • @southbayphotos
    @southbayphotos 5 ปีที่แล้ว

    Thanks for the information on backups and restores. But seriously, it's called "My-S-Q-L", not "My-Seequil": en.wikipedia.org/wiki/MySQL

  • @ankitaaarya
    @ankitaaarya 7 ปีที่แล้ว

    hey

  • @TahmidAzad-v1n
    @TahmidAzad-v1n 9 หลายเดือนก่อน

    Very helpful. Thank you.