Page 1 of 1

possible to move configuration to new computer?

Posted: Tue Dec 27, 2016 6:44 pm
by 777funk
I'd like to move my ZM configuration to a different machine. Is this possible?

Re: possible to move configuration to new computer?

Posted: Tue Dec 27, 2016 8:39 pm
by knight-of-ni
Sure just backup the mysql database and restore it to the new machine.
If the new machine is not running an identical version distro, then you must manually verify the values under Options->Paths are correct for the new machine.

Re: possible to move configuration to new computer?

Posted: Sat Dec 31, 2016 9:23 am
by quian
Backup

service zoneminder stop
mysqldump -uroot -p zm > zm.sql
service zoneminder start

Restore

service zoneminder stop
mysql -uroot -p zm < zm.sql
service zoneminder start