Direkt zum Inhalt

Abgelaufene Aktivitäten entfernen

Thread needs solution

The backups were obviously done - but the logs are full of this entries, witch causes in red bar charts in the dashboard.

thx for help

--------------------
Details zu den Log-Einträgen
--------------------
Typ: Fehler
Datum und Zeit: 07.07.2014 13:18:31
Backup-Plan: [Keine]
Task: [Keine]
Typ der verwalteten Einheit: [Keine]
Verwaltete Einheit: [Keine]
Maschine: xyz.local
Code: 20.250.685(0x135003D)
Modul: 309
Besitzer: acronis62689244f0334
Nachricht:
Befehl 'Abgelaufene Aktivitäten entfernen' ist fehlgeschlagen.

Zusätzliche Info:
--------------------
Fehlercode: 61
Module: 309
Zeileninfo: 4a8728dc8a1c950f
Felder: $module : mms_vs_38774
Nachricht: Befehl 'Abgelaufene Aktivitäten entfernen' ist fehlgeschlagen.
--------------------
Acronis Knowledge Base: http://kb.acronis.com/errorcode

Ereignis-Code: 0x0135003D

--------------------

0 Users found this helpful

ja, hier genau so

nach dem letzten Update am 19.7.2014 ist es mir aufgefallen..... zudem funktioniert das disaster recovery nur noch teilweise oder gar nicht (es wird erfolgreich gemeldet, aber nichts erzeugt oder bei einem Prozess ein Fehler angezeigt (61 und 309/Postfachsicherung exchange) ... ich musste es rausnehmen, da es sonst als "fehlgeschlagen" deklariert wird. Vor dem Update funktionierte es noch, wobei der Fehler mit dem log wohl schon länger existiert.

hier ist es so, dass ich auf wechselmedien sichere , einige logs beziehen sich auf ereignisse, die gar nicht mehr existieren. Da ich aber nur "alle löschen" anklicken kann, hab ich keine Chance herauszufinden, ob es daran liegt.

Dieser Fehlercode soll u.U. was mit Rechten zu tun haben..... ich blick da nicht mehr so recht durch... die Installation war schon , was die Rechte und Sicherheitsparameter betrifft, etwas "crazy"..... aber nun steh ich auch auf dem Schlauch.

Aufgefallen ist mir nach dem Update gleich, dass er in den Jobs das "erfolgreich erstellt" Datum auf falsche Werte gedreht hatte....einmal auf "bearbeiten" und "speichern".... half da zumindestens....

Acronis, ich gehe eigentlich davon aus, dass ein Update etwas verbessert, jetzt habe ich neue Fehler

Hello everyone.
the problem with removing expired activities failure is a known issue.
You can workaround this problem by using "remove_history" script as in the article below but applying it to MMS database.
https://kb.acronis.com/content/31547
You can see the modified script attached to this article.
1. Put it into folder "C:\ProgramData\Acronis\BackupAndRecovery\MMSData\DML"
2. Stop Acronis Managed Machine Service.
3. Copy F4CEEE47-042C-4828-95A0-DE44EC267A28.db3 somewhere (just in case)
4. open CMD as Admin and "cd" to that folder.
5. run remove_history_mms.bat YYYY-MM-DD [HH:MM:SS]. If you do not specify the arguments to the script it will remove all activities basically clearing the logs.

The problem itself is going to be fixed in our later builds.

Anhang Größe
182217-114187.zip 250.16 KB

ok ... This seems to work. Thanks for the workaround. I hope the problem is solved in the next release.

hello,

in my case, the .db3 was corrupt ("Error: database disk image is malformed"), so the log entries can't delete anymore (same error as above). i fixed this problem with this how-to (very simple! see step 3 and ignore "spiceworks"):

http://community.spiceworks.com/how_to/1468-how-to-fix-corrupt-sqlite-d…

kind regards,

andreas

Hi Andreas,
thank you for sharing your experiences!

... no problem - here the copy of my documentation:

1. Stop the Acronis MMS Service

2. Launch an MS-Dos Command

3. Then go to the database directory "C:\ProgramData\Acronis\BackupAndRecovery\MMSData\DML", and launch SQLite:
sqlite3 .db

4. You can check the database integrity by:
pragma integrity_check;

5. If it's OK, you don't need to made other treatment, your database is good. You can quit sqlite by : .quit

6. If you have error messages, export Data to SQL File:
echo .dump | sqlite3.exe .db > .sql

7. When the sql file is created, you can create a new database with your datas (don't forget to rename the old corrupt database):
sqlite3.exe -init .sql .db

8. Start the MMS Service