Skip to main content


Ich weiß da leider auch nicht mehr, als das, was ich im Internet recherchieren könnte.
@Michael 🇺🇦
Trotzdem Danke. Vielleicht weiß ja jemand anderes noch ein Rat?

Kannst Du die Tabelle kopieren?

Ggf. Index manuell löschen und neu erstellen?

Zunächst: Hast Du ein Backup?

@Nordnick 🐘

Kannst Du die Tabelle kopieren?


Wie? *keinplan*

Zunächst: Hast Du ein Backup?


Dachte eigentlich schon, bis ich durch das Problem heute daraufgekommen bin, dass der Backup-Job unbemerkt schon seit einiger Zeit nicht mehr gelaufen ist. 🙄

Löschen wäre nur wegen eines defekten Indexes der totale Overkill.

You can use ALTER TABLE tbl_name FORCE to perform a “null” alter operation that rebuilds the table. I have successfully repaired corrupted tables with this.

https://mariadb.com/kb/en/alter-table/#force

Thanks @Esko Arajärvi
Since I am not a database professional, I will ask to be on the safe side. The command is correctly ALTER TABLE post-user FORCE; ?

Um, how dangerous is this execution? Will data be lost?

You need to include the table name in back-ticks, because there is a dash in the name of the table.

ALTER TABLE `post-user` FORCE;

This should be completely safe to run, but as always, when manually tweaking things, take a backup beforehand, if possible.

This entry was edited (2 weeks ago)

@Esko Arajärvi
Crap an ALTER TABLE `post-user` FORCE; produces the following output:

MariaDB [friendica]> ALTER TABLE `post-user` FORCE;
ERROR 1177 (42000): Can't open table

Damn. That sounds more serious. 🙁

I'm not sure where to start digging for the data next.

Are you able to dump the table data with:

mysqldump –u user –p db_name table_name > output_file

@Esko Arajärvi
😔
mysqldump: Error 1030: Got error 1877 "Unknown error 1877" from storage engine InnoDB when dumping table `post-user` at row: 0
Weirdly that sounds like it has somehow lost any reference that such table exists. But the check table command still found it. Or at least a reference to it.
Ggf. bringt ein "optimize" etwas.
Danke @Michael 🇺🇦, aber das habe ich schon versucht. Leider ohne erfolg:
MariaDB [friendica]> OPTIMIZE TABLE `post-user`;
+---------------------+----------+----------+-------------------------------------------------------------------+
| Table               | Op       | Msg_type | Msg_text                                                          |
+---------------------+----------+----------+-------------------------------------------------------------------+
| friendica.post-user | optimize | note     | Table does not support optimize, doing recreate + analyze instead |
| friendica.post-user | optimize | error    | Can't open table                                                  |
| friendica.post-user | optimize | status   | Operation failed                                                  |
+---------------------+----------+----------+-------------------------------------------------------------------+
3 rows in set, 1 warning (0,016 sec)

This happened to me on my instance and I tried everything to fix the corrupted indexes, using expert advice, and couldn't fix it. I finally restored from a backup, which took 12 hours. It happened to me because I made a change to Friendica and restarted it while everything was still running. I know this is not helping you in your current situation, but I want to understand what may have caused this to happen to you and to help other Admins.

Do you have a theory as to what brought this about?

Whenever I am making any changes to Friendica now, I take MariaDB and Apache2 down, and I make a complete backup of the database disk to another disk (sudo cp -rp /mnt/friendica_db_volume_nyc1_01/mariadb /mnt/friendica_backups/) because I never ever want to go through this again. I also take a disk snapshot on Digital Ocean of the external DB drive as well, and have the regular backup available. Total paranoia now.

Good luck. Keep us posted on how you overcome this and what you learn.

@Tuxi (Backup) hat mysqlcheck nicht eine repair option? ich dachte wenn die tabelle das repair nicht unterstützt wird automatisch eine andere methode angewandt.
@xy..
Ich habe nichts gefunden.
@xy..

@Tuxi (Backup)

Not only this, mysqlcheck command can be used to CHECK (-c, -m, -C), REPAIR (-r), ANALYZE (-a), or OPTIMIZE (-o) table within your databases. The -c, -r, -a, and -o options work exclusively.

https://hevodata.com/learn/mysqlcheck/

Ich glaube wenn repair nicht ging hatte es bei mir drop und recreate oder so gemacht.. kann sein dass repair standardmäßig an ist. Weiss nicht..

@xy..
Danke. Leider aber:
The storage engine for the table doesn't support repair
@xy..
@Tuxi (Backup) hmm dann weiß ich es nicht. Meine bei mir stand noch sowas ähnliches wie "using drop + recreate instead" daneben als ich das mal versucht hatte
@Tuxi (Backup) oder ich verwechsle das und das stand bei optimize

Falls du da noch Hilfe benötigst:

1. Datenbank stoppen und backup von /var/lib/mysql machen

2. innodb_force_recovery auf 4 stellen. danach erlaubt mysql/mariadb keine Schreibzugriffe mehr https://dev.mysql.com/doc/refman/8.4/en/forcing-innodb-recovery.html

3. DB wieder starten
4. SQL Dump der Datenbank ziehen.
5. innodb_force_recovery entfernen
6. Datenbank durchstarten
6. Datenbank löschen
6. SQL Dump importieren.

@Kevin Honka
Danke. Werde ich mal durchlesen und testen.

@Kevin Honka
Aufgrund des kaputten Indexes funktioniert leider auch kein mysqldump. Mist.

mysqldump: Error 1034: Index for table 'apcontact' is corrupt; try to repair it when dumping table `apcontact` at row: 1859034

Ich werde es aber jetzt mit der --force Option versuchen.

Den Index kannst du einfach neu anlegen. Aber die weiteren Fehlermeldungen klingen so als sei da noch mehr als nur der Index kaputt.
@Johannes Brakensiek
Habe auch das Gefühl, dass da mehr im argen ist.

Also folgender Stand:
Ich konnte gestern einen Dump der DB ziehen. Danach konnte ich seltsamerweise euch ein mysqloptimize erfolgreich und ohne Fehlermeldung ausführen. Ob das am innodb_force_recovery 4 liegt oder an was anderem, kann ich, ehrlich gesagt nicht sagen.

Die Instanz lief danach auch für eine Zeit ohne Probleme. Allerdings sind dann nach so ca. 30 Minuten wieder die gleichen Fehlermeldungen im Friendica-Log aufgetaucht.

Aktuell läuft ein Testimport der gestern exportierten Datenbank. Wenn diese erfolgreich ist, dann hätte ich zumindest Daten auf einem Stand von gestern.

Allerdings frage ich mich, ob der mysqldump korrupt ist, oder nicht?

@Michael 🇺🇦
Frage: Wenn ich den Import erfolgreich in eine andere DB durchführen konnte, kann ich dann in der local.config.php den Namen der DB einfach ändern und es ist alles lauffähig? Oder ist der Name der DB auch noch irgendwo anderes hinterlegt?

Der Dump ließ sich gestern ohne Probleme einspielen. Leider ist es nur so, dass ich mich mit diesem Dump nicht anmelden konnte.

Content warning: 2025-03-21T18:18:54Z app [ERROR]: DB Error {"code":1356,"error":"View 'friendicadb.account-user-view' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them","params":"SELECT `id`, `uid`, `pid` FROM `acc

Okay. Es scheint sich jetzt beruhigt zu haben. Seltsam.