ripristinare la tabella dai file .frm e .ibd?


36

Ho precedentemente salvato una copia della directory / var / lib / mysql / ddms ("ddms" è il nome dello schema). Ora ho installato un nuovo MySQL su Ubuntu 10.04.3 LTS appena installato eseguendo apt-get install mysql-server, credo che sia stata installata la versione 5.1. Dopo aver copiato la directory ddms in / var / lib / mysql, alcune delle sue tabelle funzionano bene, queste sono le tabelle con un set associato di tre file: un file .frm, un file .MYD e un file .MYI.

Tuttavia, esistono due tabelle con un diverso set di file: un file .frm e un file .ibd. Queste due tabelle non sono state visualizzate nell'elenco delle tabelle in phpMyAdmin. Quando guardo il registro degli errori, dice:

[ERROR] Cannot find or open table ddms/dictionary_item from
the internal data dictionary of InnoDB though the .frm file for the
table exists. Maybe you have deleted and recreated InnoDB data
files but have forgotten to delete the corresponding .frm files
of InnoDB tables, or you have moved .frm files to another database?
or, the table contains indexes that this version of the engine
doesn't support.

Aiutate a ripristinare queste due tabelle. Grazie.


Questa citazione del 23 aprile 12 di Rolando è ancora valida oggi. "Basta copiare i file .frm e .ibd da una posizione a un'altra richiede problemi." Usa un'alternativa come mysqldump per ottenere i tuoi vecchi dati in un modulo che può essere caricato come pianificato anni fa. Conosciuto anche come backup.
Wilson Hauck,

Risposte:


37

Le tabelle InnoDB non possono essere copiate allo stesso modo delle tabelle MyISAM.

Basta copiare i file .frm e .ibd da una posizione all'altra per chiedere problemi. La copia del file .frm e .ibd di una tabella InnoDB è utile solo se e solo se è possibile garantire che l'id del tablespace del file .ibd corrisponda esattamente alla voce dell'ID del tablespace nei metdati del file ibdata1 .

Ho scritto due post in DBA StackExchange su questo concetto di id del tablespace

Ecco un link eccellente su come ricollegare qualsiasi file .ibd a ibdata1 in caso di ID spazio tabella non corrispondenti: http://www.chriscalender.com/?tag=innodb-error-tablespace-id-in-file . Dopo aver letto questo, dovresti capire immediatamente che copiare i file .ibd è semplicemente folle.

È possibile applicare i suggerimenti dal collegamento Chris Calendar oppure tornare alla vecchia installazione di mysql, avviare mysql e quindi mysqldump il ddmsdatabase. Quindi, importa quel mysqldump nella tua nuova istanza mysql. Fidati di me, questo sarebbe molto più semplice.


Quindi una singola tabella potrebbe non essere una buona idea, ma per quanto riguarda un intero database al momento? Ho avuto un crash nella mia tabella utente e ho dovuto fare un --inizializzazione su mysqld. Posso copiare l'intera cartella del database InoDB dalla cartella data_backup?
FMaz008,

Rolando, nel caso tu mi possa aiutare: serverfault.com/q/908988/224334
Ionică Bizău,

Il tuo post su mi ha How to Recover an InnoDB table whose files were moved around letteralmente salvato la vita. Grazie mille.
Paulo Griiettner,

20

Di recente ho riscontrato questo stesso problema. Ecco i passaggi che ho usato per risolverlo senza dover fare confusione con l'id tablespace come menziona RolandoMySQLDBA sopra. Sono su un Mac e quindi ho usato MAMP per ripristinare il Database al punto da poterlo esportare in un dump MySQL.

Puoi leggere l'intero post sul blog qui: http://www.quora.com/Jordan-Ryan/Web-Dev/How-to-Recover-innoDB-MySQL-files-using-MAMP-on-a-Mac

Tu devi avere:

-ibdata1

-ib_logfile0

-ib_logfile1

-.FRM file dalla cartella mysql_database

-Fresca installazione di MAMP / MAMP Pro che sei disposto a distruggere (se necessario)

  1. SSH nel tuo server web (sviluppo, produzione, nessuna differenza) e cerca la tua cartella mysql (la mia era su / var / lib / mysql per un'installazione di Plesk su Linux)
  2. Comprimi la cartella mysql
  3. Scarica un archivio della cartella mysql che dovrebbe contenere tutti i database mySQL, MyISAM o innoDB (puoi scp questo file o spostarlo in una directory scaricabile, se necessario)
  4. Installa MAMP (Mac, Apache, MySQL, PHP)
  5. Sfoglia / Applicazioni / MAMP / db / mysql /
  6. Backup / Applicazioni / MAMP / db / mysql in un archivio zip (per ogni evenienza)
  7. Copia in tutte le cartelle e file inclusi nell'archivio della cartella mysql dal server di produzione (nel mio caso l'ambiente mt Plesk) TRANNE NON SOVRASCRIVERE:

    - / Applications / MAMP / db / mysql / mysql /

    - / Applications / MAMP / db / mysql / mysql_upgrade_info

    - / Applications / MAMP / db / mysql / performance_schema

  8. E voilà, ora dovresti essere in grado di accedere ai database da phpMyAdmin, che sollievo!

Ma non abbiamo finito, ora è necessario eseguire un mysqldump per ripristinare questi file nel proprio ambiente di produzione e l'interfaccia phpmyadmin scade per grandi database. Segui i passaggi qui:

http://nickhardeman.com/308/export-import-large-database-using-mamp-with-terminal/

Di seguito copiato per riferimento. Si noti che su un'installazione MAMP predefinita, la password è "root".

Come eseguire mysqldump per MAMP usando Terminal

ESPORTAZIONE DATABASE DA MAMP [1]

Fase 1: aprire una nuova finestra del terminale

Passaggio 2: passare all'installazione MAMP inserendo la seguente riga nel terminale cd / applicazioni / MAMP / libreria / bin Premere il tasto Invio

Passaggio tre: scrivere il comando dump ./mysqldump -u [USERNAME] -p [DATA_BASENAME]> [PATH_TO_FILE] Premere il tasto Invio

Esempio:

./mysqldump -u root -p wp_database > /Applications/MAMP/htdocs/symposium10_wp/wp_db_onezero.sql

Suggerimento rapido: per navigare rapidamente in una cartella è possibile trascinare la cartella nella finestra del terminale e scrivere la posizione della cartella. È stato un grande giorno in cui qualcuno mi ha mostrato questo.

Passo quattro: questa riga di testo dovrebbe apparire dopo aver premuto invio Inserisci password: quindi indovina un po ', digita la password, tieni presente che le lettere non verranno visualizzate, ma sono lì Premi il tasto Invio

Fase cinque: controllare la posizione in cui è stato archiviato il file, se presente, SUCCESSO Ora è possibile importare il database, che verrà delineato successivamente.

Ora che hai un'esportazione del tuo database mysql puoi importarlo nell'ambiente di produzione.


1
Funziona ancora dal 2018. Questa risposta è oro. La parte importante per me è il n. 7, questi sono i file che devi assolutamente conservare (non è menzionato da nessun'altra parte su soluzioni simili, grazie per quello @jordan).
Bigood,

@Buona felice che mi aiuti ancora!
jordan8037310,

la tabella di errore 1146 non esiste quando si esegue il dump
Robert Sinclair il

15

Ho recuperato i miei file MySQL 5.5 * .ibd e * .frm utilizzando MySQL Utilites e MariaDB 10.

1) Generazione di Crea SQL.
Puoi ottenere il tuo sql di creazione dal file frm. È necessario utilizzare: https://dev.mysql.com/doc/mysql-utilities/1.5/en/mysqlfrm.html

shell> mysqlfrm --server = root: pass @ localhost: 3306 c: \ MY \ t1.frm - -port = 3310 In

altri modi potresti creare il tuo sql.

2) Crea le tue tabelle
Crea le tue tabelle nel database.

3) alter table xxx scarta tablespace
Elimina le tue tabelle che vuoi sostituire i tuoi file * .ibd.

4) Copia i tuoi file * .ibd (MySQL o MariaDB) nel percorso dati di MariaDB Per
prima cosa provo a utilizzare MySQL 5.5 e 5.6 per ripristinare, ma il database si arresta in modo anomalo e si interrompe immediatamente sull'errore con ID spazio al tavolo. ( ERRORE 1030 (HY000): errore -1 dal motore di archiviazione )
Dopo aver utilizzato MariaDB 10.1.8 e aver recuperato correttamente i miei dati.

5) alter table xxx import tablespace
Quando si esegue questa istruzione, MariaDB avverte del file ma non è importante che ripristinare i dati :) Il database continua ancora e è possibile visualizzare i dati.

Spero che queste informazioni ti siano utili.


1
Questo ha funzionato per me. Sebbene mysqlfrm(le versioni provate 1.3.5 e 1.6.5 con MySQL 5.6 e 5.7) non abbiano dato la CREATEdefinizione corretta , anche quando si utilizza MySQL 5.7 ( il ROW_FORMAT predefinito è cambiato in MySQL 5.7.9 ) risultante Schema mismatch (Expected FSP_SPACE_FLAGS=0x21, .ibd file contains 0x0.)durante l'importazione del tablespace. L'aggiunta manuale ROW_FORMAT=compactalla fine della CREATEdichiarazione ha fatto il trucco.
Jānis Elmeris,

@ JānisElmeris> Anche Manually adding ROW_FORMAT=compact at the end of the CREATE statement did the trick.per me ha funzionato. Grazie! 👍
Synetech,

3

Ho avuto lo stesso identico problema solo con i file come backup.

Quello che ho fatto per risolverlo è stato copiare i file del database in / var / lib / mysql / yourdb e l'ibdata1 che si trova in / var / lib / mysql.

Sono stato quindi in grado di verificare che potevo accedere alle tabelle mysql -u root -p dbname e all'interrogazione di alcune delle tabelle precedentemente danneggiate.

Successivamente ho creato un dump del database con mysqldump -u root -p [root_password] [nome_database]> dumpfilename.sql


2

Se si sta utilizzando MAMP e non è possibile ottenere MySQL per iniziare dopo aver copiato i file sopra, ho messo innodb_force_recovery = 2dentro my.inie poi sono stato in grado di ottenere mysql per il lancio e esportare il mio db fuori.


1

Se riesci a ripristinare il file * .ibd sul server MySQL originale, non dimenticare di ripristinare anche i diritti di accesso al file. Nel mio caso (MySQL8 su CentOS7), ho ripristinato il file in /var/lib/mysql/db/tablename.ibd ed eseguito:

chown mysql tablename.ibd
chgrp mysql tablename.ibd
chmod 0640 tablename.ibd

Prima di correggere i diritti di accesso, l'accesso alla tabella causava l'errore "2006 MySQL server è andato via". Dopo aver corretto i diritti di accesso, la tabella ha funzionato (anche senza riavviare il servizio mysqld).


0

Ho raccolto post da argomenti simili (le cui risposte non sono state pubblicate qui):

soluzione 1: https://dba.stackexchange.com/a/59978

soluzione 2: https://dba.stackexchange.com/a/71785 (+ altro post lì)

soluzione 3: kit di recupero per tabelle: https://twindb.com/how-to-recover-innodb-dictionary/

soluzione 4: ripristina il database MySQL dalla cartella dei dati senza ibdata1 dai file ibd

soluzione 5: utilizzo del mysqlfrmcomando

soluzione 6: https://dba.stackexchange.com/a/159001

soluzione 7: https://dba.stackexchange.com/a/144573


Sembra sospettosamente una risposta solo al collegamento.
Mustaccio

Poiché tutti i collegamenti provengono dal nostro sito, è probabile che non scompaiano, quindi sto bene con questo @mustaccio
jcolebrand

3
Questo non sembra aggiungere molto valore, dato che la maggior parte di questi appare anche nell'elenco "Correlati" pochi pixel a destra.
Mustaccio

@jcolebrand grazie per essere spensierato. molte persone non possono vedere l'utilità anche di tali risposte "non dirette". Possono solo rilevare la violazione delle regole.
T.Todua,

1
No, ma devi capire che ha ragione. Non hai aggiunto alcun valore. Stavo rispondendo con un giudizio sulle regole, non perdonando la tua risposta. In realtà è una risposta piuttosto negativa.
jcolebrand

0

Voglio solo aggiungere un'altra cosa per gli utenti di macos El Capitan. Le utility MySQL non sono supportate per questa versione, quindi il comando mysqlfrm non è utile. Quello che ho fatto è stato recuperare le strutture delle mie tabelle con dbsake come mostrato in questo link: https://www.percona.com/blog/2015/12/16/recovering-table-structure-from-frm-files-using-dbsake/

Tutto quello che devi fare è installare dbsake:

# curl -s http://get.dbsake.net > dbsake
# chmod u+x dbsake

quindi usa il comando frmdump e fornisci il percorso al tuo file .frm:

# ./dbsake frmdump /var/lib/mysql/sakila/staff.frm

otterrai l'istruzione create. Una volta fatto questo, ho semplicemente seguito i passaggi da 2 a 5 già menzionati da @Ecd. Spero che aiuti qualcuno.


0

Apprezzo molto Ecd. Cosa ha funzionato per me:

1.- Ho avuto un backup della base qualche mese fa, questo mi ha aiutato a sollevare questo backup in xampp in Windows 10 e creare le tabelle per avere la struttura (configurazione: Windows 10, xampp-windows-x64-7.1.30- 5-VC14) mysql my.ini file di configurazione alla fine

NOTE: Some tables did not have ROW_FORMAT = COMPACT, so I went to operations on each 
    table and changed it manually.
    (If I did not do that, an error appeared and I did not let the import).

NOTE2: I had the backup of months ago but it should also work by first recovering 
    the structure of the .frm files in case of not having a backup at hand.
    (You can try this link:
    https://www.percona.com/blog/2014/01/02/recover-table-structure-frm-files-mysql- 
    utilities/)

2.- Avendo il vecchio database attivo, ho proceduto ad eseguire alter table xxx scartare tablespace per ogni tabella nel database che volevo recuperare, quindi i file .ibd della cartella dati in C: / xampp / mysql / data / system era stato eliminato (in questo caso è questo percorso)

3.- Ho proceduto a copiare i file .ibd dal database che volevo ripristinare nella cartella xampp del vecchio database

4.- Avere i file copiati, eseguire: alter table xxx import tablespace Per ogni tabella nel database, verrà visualizzato un avviso ma lo ignoreremo, i dati verranno caricati nella tabella e potranno essere esportati in seguito.

5.- Esporta l'intero database in un file sql e procedi a costruirlo in produzione e con successo!

# Example MySQL config file for small systems.
#
# This is for a system with little memory (<= 64M) where MySQL is only used
# from time to time and it's important that the mysqld daemon
# doesn't use much resources.
#
# You can copy this file to
# C:/xampp/mysql/bin/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is C:/xampp/mysql/data) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client] 
# password       = your_password 
port            = 3306 
socket          = "C:/xampp/mysql/mysql.sock"


# Here follows entries for some specific programs 

# The MySQL server
[mysqld]
port= 3306
socket = "C:/xampp/mysql/mysql.sock"
basedir = "C:/xampp/mysql" 
tmpdir = "C:/xampp/tmp" 
datadir = "C:/xampp/mysql/data"
pid_file = "mysql.pid"
# enable-named-pipe
key_buffer = 160M
max_allowed_packet = 300M
sort_buffer_size = 1204K
net_buffer_length = 80K
read_buffer_size = 512K
read_rnd_buffer_size = 1024K
myisam_sort_buffer_size = 8M
log_error = "mysql_error.log"

# Change here for bind listening
# bind-address="127.0.0.1" 
# bind-address = ::1          # for ipv6

# Where do all the plugins live
plugin_dir = "C:/xampp/mysql/lib/plugin/" 

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
# commented in by lampp security
#skip-networking
#skip-federated

# Replication Master Server (default)
# binary logging is required for replication
# log-bin deactivated by default since XAMPP 1.4.11
#log-bin=mysql-bin

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id   = 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin


# Point the following paths to different dedicated disks
#tmpdir = "C:/xampp/tmp"
#log-update = /path-to-dedicated-directory/hostname

# Uncomment the following if you are using BDB tables
#bdb_cache_size = 40M
#bdb_max_lock = 10000

# Comment the following if you are using InnoDB tables
#skip-innodb
innodb_data_home_dir = "C:/xampp/mysql/data"
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = "C:/xampp/mysql/data"
#innodb_log_arch_dir = "C:/xampp/mysql/data"
## You can set .._buffer_pool_size up to 50 - 80 %
## of RAM but beware of setting memory usage too high
innodb_buffer_pool_size = 16M
## Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 50M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 600

## UTF 8 Settings
#init-connect=\'SET NAMES utf8\'
#collation_server=utf8_unicode_ci
#character_set_server=utf8
#skip-character-set-client-handshake
#character_sets-dir="C:/xampp/mysql/share/charsets"
sql_mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION
log_bin_trust_function_creators = 1

[mysqldump]
quick
max_allowed_packet = 160M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[isamchk]
key_buffer = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M

[myisamchk]
key_buffer = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

Spero che aiuti qualcuno che ha questa situazione, saluti.

Inglese fornito da Google


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.