possible to move configuration to new computer?
possible to move configuration to new computer?
I'd like to move my ZM configuration to a different machine. Is this possible?
- knight-of-ni
- Posts: 2406
- Joined: Thu Oct 18, 2007 1:55 pm
- Location: Shiloh, IL
Re: possible to move configuration to new computer?
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.
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.
Visit my blog for ZoneMinder related projects using the Raspberry Pi, Orange Pi, Odroid, and the ESP8266
All of these can be found at https://zoneminder.blogspot.com/
All of these can be found at https://zoneminder.blogspot.com/
Re: possible to move configuration to new computer?
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
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