• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Horde identities didn't migrate

G

garan

Guest
I've been migrating some Plesk 8.1 accounts to a separate 8.2 server and found that the horde identities haven't come across. This could be because there were issues with the migration stumbling on one of the mail accounts but I'm not sure.

Had to be solved as rollback wasn't an option for such a minor detail. So to export and import identities for the domain mydomain.co.uk:

1) Run 'mysql -u admin -p' on the old box
2) use horde
3) select * into outfile "preferenceexport" from horde_prefs where pref_uid like "%mydomain.co.uk" and pref_name="identities";
4) This created a file called preferenceexport in /var/lib/mysql/horde/
5) scp that file across to /var/lib/mysql/horde/ on the new server
6) Run 'mysql -u admin -p' on the new server
7) use horde
8) load data infile "preferenceexport" into table horde_prefs;

Bingo.

Garan
 
Back
Top