• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. whileoneloop
    3. Topics

    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
    W
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 9
    • Groups 0

    Topics

    • W

      Point values stop being returned by server (using latest dashboard module)

      Watching Ignoring Scheduled Pinned Locked Moved User help
      2
      0 Votes
      2 Posts
      2k Views
      JoelHaggarJ
      It sounds like the websockets are not working which could likely be caused if you are using a proxy that's not configured for it. Can you share how you have the URL being directed to Mango. We use Apache with a virtual site to act as a proxy and had issues getting the websockets to work. Here are some general instructions we put together that might be helpful: Login to VPN server and enable Websocket proxy module in Apache (just has to be done once, don’t need to do it every time): a2enmod proxy_wstunnel Go to Apache websites configuration directory: cd /etc/apache2/sites-available Backup the website config file you want to set for Websocket proxy: cp -pr <yourwebsite>.conf{,.bak} Where <yourwebsite> - is the name of config file, usually the same with website name. Edit the file <yourwebsite>.conf in your favourite editor and add below text: RewriteEngine On RewriteCond %{HTTP:Upgrade} =websocket RewriteRule /(.) ws://<Mango_IP>/$1 [P,L] RewriteCond %{HTTP:Upgrade} !=websocket RewriteRule /(.) http://<Mango_IP>/$1 [P,L] Where <Mango_IP> - is the IP address of a Mango device to which you configured ProxyPass. Reload Apache configuration: service apache2 reload
    • W

      Migrating NoSQL data store license from one Mango instance to another

      Watching Ignoring Scheduled Pinned Locked Moved Mango General
      2
      0 Votes
      2 Posts
      3k Views
      JoelHaggarJ
      You can transfer the license but there is currently no way to convert a NoSQL database back to a SQL database. This would be a pretty easy feature for us to add so we'll consider that for the future.
    • W

      Error during WebSocket handshake: Incorrect 'Sec-WebSocket-Accept' header value

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      1
      0 Votes
      1 Posts
      5k Views
      No one has replied
    • W

      Mango consuming 100% CPU , web interface not responding, how to diagnose further?

      Watching Ignoring Scheduled Pinned Locked Moved Mango General
      8
      0 Votes
      8 Posts
      5k Views
      JoelHaggarJ
      Here is a link to information on database conversions: https://help.infiniteautomation.com/support/solutions/articles/14000022650-database-conversions Note that when using MySQL Mango will not perform automatic backups of the database like it does with H2 and NoSQL.