Page 1 of 1

Is there any way to reset the Monitor ID number?

Posted: Tue Jun 08, 2004 4:27 pm
by l8nite4me
I was wondering if there is anyway to manually reset the monitor ID number in the console view. During setup and playing around with different cameras my monitor id's have become skewed. I would like to manually id them or reset back to default. Is this possible?

Thanks
L8nite

Posted: Tue Jun 08, 2004 8:38 pm
by zoneminder
You can manually set them by going into mysql as in

mysql zm

and then typing

update Monitors set Id = 1 where Id = 27;

however you will have to ensure that there is no monitor with that Id already present. You will also need to update the other tables, so whilst still in mysql do

update Zones set MonitorId = 1 where MonitorId = 27;
update Events set MonitorId = 1 where MonitorId = 27;
update Stats set MonitorId = 1 where MonitorId = 27;
update TriggersX10 set MonitorId = 1 where MonitorId = 27;

then quit mysql

quit

though you will probably only need the first two of these. You will also need to update the allowed MonitorIds field of any users you have created with restricted ids if the restriction is not to be messed up.

Phil,

Posted: Wed Jun 09, 2004 12:19 am
by l8nite4me
Thanks Phil