Welcome to Pandora FMS Community › Forums › Community support › Update?
-
Update?
Posted by iggi on May 3, 2009 at 17:55So the update manager says I have an update, and the active update is in the enterprise version only (which is ok, even though I cannot find a pricing model for the enterprise version). So, I downloaded the newest SVN release, go into the branches folder and pull Pandora 2.x folder and preform the update, (files plus sourcing the SQL). Once all of that was done, I logged in to Pandora FMS and it shows I still need to update, can anyone lead me to where the update is and/or how to preform it?
Thanks in advance.
manu replied 15 years, 9 months ago 3 Members · 10 Replies -
10 Replies
-
-
-
-
-
-
-
::
It does look like it was fixed, my problem was I was attempting to do 99.9999% uptime (some of our extremely HA clients need network uptime of 3+ 9’s) possibly able to change this in the database to allow for a longer decimal? 5 9’s is the longest I can ever envision needing.
-
::
Yes, altering database will fit your needs. Syntax should be something like
ALTER TABLE treport_content_sla_combined MODIFY `sla_limit` double(18,3) default NULL;
ALTER TABLE treport_content_sla_combined MODIFY `sla_min` double(18,3) default NULL;
ALTER TABLE treport_content_sla_combined MODIFY `sla_max` double(18,3) default NULL;This will give you three decimals, if you need more, just alter the table again. This is for the SLA’s only.
-
-