Dear OpenEMM-Experts,
I have an existing installation of OpenEMM 6.1 running on a Windows 7 Machine, with which I already worked.
Now I installed a Ubuntu Linux system with the OpenEMM version 6.2, my questions are the following:
-How can I move the mailings, recipients from the old machine to the new one?
-Which tables are effected for this purpose? Or do I have to move the whole database?
-Did the table structure change between version 6.1 and 6.2?
Thanks in advance!
Markus
Windows OpenEMM 6.1 -> Linux OpenEMM 6.2
Moderator: moderator
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
Re: Windows OpenEMM 6.1 -> Linux OpenEMM 6.2
This is quite easy:
1. Dump your database with
2. Set up OpenEMM 6.1 on Ubuntu.
3. Set up the database wirh
4. Check if OpenEMM 6.1 works and your data is present
5. Update OpenEMM 6.1 as described in the documentation (because the DB schema changes)
1. Dump your database with
Code: Select all
mysqldump -aCceQx --hex-blob -u root -p -r openemm.sql openemm
mysqldump -aCceQx --hex-blob -u root -p -r openemm_cms.sql openemm_cms
3. Set up the database wirh
Code: Select all
mysqladmin -u root -p create openemm
mysqladmin -u root -p create openemm_cms
mysql -u root -p openemm < openemm.sql
mysql -u root -p openemm_cms < openemm_cms.sql
5. Update OpenEMM 6.1 as described in the documentation (because the DB schema changes)
OpenEMM Maintainer
-
- Posts: 1
- Joined: Mon Jan 31, 2011 10:06 am
Re: Windows OpenEMM 6.1 -> Linux OpenEMM 6.2
Great information! Thanks for this response. It gives me ideas on setting up OpenEMM 6.1.I will just follow the given guides.