• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. fclauson
    3. Posts

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 13
    • Posts 56
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by fclauson

    • RE: M2M2 license update

      see attached screen shots

      Attachment: download link

      posted in Mango Automation general Discussion
      F
      fclauson
    • RE: M2M2 license update

      I might be being dumb - but that option is not displayed for me

      posted in Mango Automation general Discussion
      F
      fclauson
    • Source for base modules

      Are you still providing the source code for modules - specifically the 1-wire module

      Francis

      posted in Mango Automation general Discussion
      F
      fclauson
    • RE: Source for base modules

      Are you still providing the source code for modules - specifically the 1-wire module

      Francis

      posted in Mango Automation general Discussion
      F
      fclauson
    • 1-wire scan fails

      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'

      posted in Mango Automation general Discussion
      F
      fclauson
    • RE: 1-wire scan fails

      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'

      posted in Mango Automation general Discussion
      F
      fclauson
    • RE: Module.properties not found

      great - works now - prehaps the instructions could be a little clearer

      posted in Mango Automation general Discussion
      F
      fclauson
    • Module.properties not found

      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

      posted in Mango Automation general Discussion
      F
      fclauson
    • RE: Module.properties not found

      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

      posted in Mango Automation general Discussion
      F
      fclauson
    • RE: M2M2 promoted to beta

      well done

      will down load and take a look

      francis

      posted in Announcements
      F
      fclauson
    • RE: Use of the DS2406 switch for input

      Bump

      any news on this - did you manage to test

      posted in User help
      F
      fclauson
    • Select colour(color) of each data set on graph

      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

      posted in Wishlist
      F
      fclauson
    • RE: Select colour(color) of each data set on graph

      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

      posted in Wishlist
      F
      fclauson
    • RE: Use of the DS2406 switch for input

      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

      posted in User help
      F
      fclauson
    • RE: Use of the DS2406 switch for input

      Hi

      any update on testing ?

      posted in User help
      F
      fclauson
    • RE: Mango Emailing System Log Files

      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

      posted in User help
      F
      fclauson
    • RE: Mango Emailing System Log Files

      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>
      
      
      posted in User help
      F
      fclauson
    • RE: Mango Emailing System Log Files

      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

      posted in User help
      F
      fclauson
    • Change time out on event actions

      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

      posted in Wishlist
      F
      fclauson
    • RE: Change time out on event actions

      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

      posted in Wishlist
      F
      fclauson