• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

plesk backup failed - dumb error

M

myfamad86521

Guest
plesk backup failed - dump error

Hi,

I am doing a plesk backup but during the backup process i receive this error message:

Item has already been added. Key in dictionary: "[email protected]"
key being added: "[email protected]"


Plesk backup still failed even after i diselect the domain name from the list.

i am using plesk 7.5 on windows

Please advise. :(
 
has anybody found a solution for this ? i am having the same problem, i apologize for posting in the wrong place but i have to get some backups done
 
Most probably this issue is related to Plesk database inconsistency. Try to login to MySQL and correct database recoreds in the following way:

mysql> SELECT * from psa.sa_conf where mailname like = '[email protected]';

This query should return a several records with the same value 'mailname'. You should remove duplicate records manually:

mysql> delete from psa.sa_conf where id = 'id_of duplicate record';

Do not forget to left the original record in this table as this is the only one that should not be erased :)
 
Back
Top