see attached screen shots
Attachment: download link
see attached screen shots
Attachment: download link
I might be being dumb - but that option is not displayed for me
Are you still providing the source code for modules - specifically the 1-wire module
Francis
Are you still providing the source code for modules - specifically the 1-wire module
Francis
When running a SCAN for a 1-wire data type it comes back with error "NULL DEVICE"
The error in the log file is
ERROR 2011-01-31 20:48:15,563 (com.serotonin.m2m2.web.dwr.util.BlabberConverterManager.convertOutbound:183) - No converter found for 'com.serotonin.m2m2.onewire.common.OneWireContainerInfo'
When running a SCAN for a 1-wire data type it comes back with error "NULL DEVICE"
The error in the log file is
ERROR 2011-01-31 20:48:15,563 (com.serotonin.m2m2.web.dwr.util.BlabberConverterManager.convertOutbound:183) - No converter found for 'com.serotonin.m2m2.onewire.common.OneWireContainerInfo'
great - works now - prehaps the instructions could be a little clearer
Trying to load up some of the modules and getting an error that the (could not cut and past from dev system so not exact message)
/m2m/web/modules/classes module.properties not found in module directory - module not loaded
any idea how to fix
Trying to load up some of the modules and getting an error that the (could not cut and past from dev system so not exact message)
/m2m/web/modules/classes module.properties not found in module directory - module not loaded
any idea how to fix
Bump
any news on this - did you manage to test
It would be useful when specifying a graph to
1 - be able to select the back ground colour
2 -be able to specify the colour of each line
Francis
It would be useful when specifying a graph to
1 - be able to select the back ground colour
2 -be able to specify the colour of each line
Francis
ok - let me have a play applying a voltage to the switch side and see what happens - I am away at the mo so this will take a few days to achieve
If any one else can have a go at this then please feel free to chip in
Francis
Hi
you have most of it right :D
I created a directory unde ther mango app on tomcat called "FrancisScripts" and placed them in there
Make sure you have a backup of it in case when you do a Mango upgrade you forget and delete the whole of the Mango app
Francis
HI
For Cron read: http://www.unixgeeks.org/security/newbie/unix/cron-1.html
For monitoring the system I have created a couple of JSPs called & processed by mango retreiver
Disk space
<%@ page import="java.io.*" %>
<HTML>
<BODY>
<%
Process proc=Runtime.getRuntime().exec("df -h ");
proc.waitFor();
String str=null ;
BufferedReader read=new BufferedReader(new InputStreamReader(proc.getInputStream()));
while(read.ready())
{
str=(read.readLine());
if (str.startsWith("/dev")) {out.println(str); }
}
%>
</BODY>
</HTML>
Log file count
<%@ page import="java.io.*" %>
<HTML>
<BODY>
<%
Process proc=Runtime.getRuntime().exec("ls /usr/local/tomcat/logs -al ");
proc.waitFor();
Integer i =0;
BufferedReader read=new BufferedReader(new InputStreamReader(proc.getInputStream()));
while(read.ready())
{
i = i + 1 ;
read.readLine();
}
out.println("Files=" + i + "x");
%>
</BODY>
</HTML>
Hi
How are you doing the back up?
I was using the timed events but as these only have a 15 sec time out they are not well suited to backups.
I run a cron job every 1am to do some system maintainence (delete tomcat logs, backup etc)
You can then get Cron to email you the log file
I do use mango to monitor the number of log files etc to make sure that the job is running (if we get more than 30 then it the job probably has failed)
by the way I use www.spideroak.com as the backup - free (2GB), easy and simple
Just back up a couple of key files (DERBY for example)
Francis
Current event actions have a 15 sec time out
it would be good if this could be varied - .eg. I have a backup which takes 1hr
Current event actions have a 15 sec time out
it would be good if this could be varied - .eg. I have a backup which takes 1hr