• header.categories
    • header.recent
    • header.tags
    • header.popular
    • register
    • login

    Programmatically reboot a node

    scheduled pinned locked moved Developers Zone
    15 posts 4 posters 2.1k views 1 watching
    loading-more-posts
    • oldest-to-newest
    • newest-to-oldest
    • most-votes
    reply
    • reply-as-topic
    guest-login-reply
    deleted-message
    • D offline
      Daniele
      global:last-edited-by,

      Hi,
      I'd like to be able to send a reboot payload to a node from a script, is it possible?
      Could someone point me to an example?
      Thanks
      Daniele

      skywatchS one-reply-to-this-post last-reply-time reply quote 0
      • skywatchS offline
        skywatch @Daniele
        global:last-edited-by, skywatch

        @Daniele I can't help with an example but I did just have a look to see if I could help and found what I think you are wanting.

        Just go in mycontroller to <resources>, <operations> and there you can make an operation with the drop down options to send a reboot to a particular node.

        So....

        operations.jpg

        Under operation, type = payload.
        Under Resource node followed by your desired node.
        Under payload - Reboot. You can add a delay as well here if you want.

        Then go to <rules> and add a rule to trigger the operation.

        Hope this helps.

        one-reply-to-this-post last-reply-time reply quote 1
        • D offline
          Daniele
          global:last-edited-by,

          @skywatch thank you, I know about that, and btw I can get the same result from Resources -> Nodes, selecting the node and the Reboot from the action menu.
          What I'd like is doing the same thing programmatically.
          Just to clarify, I noticed that from time to time my ethernet gateway hangs and all the dependent nodes go offline; when this happens, it's usually sufficient issuing a reboot of the node and then reloading the gw from MyController.
          I'd like to try scheduling a script that does these 2 things for me when nodes go offline.

          skywatchS one-reply-to-this-post last-reply-time reply quote 0
          • skywatchS offline
            skywatch @Daniele
            global:last-edited-by, skywatch

            @Daniele Aha! - OK then. Here is what I did to try and stop this issue causing problems......

            gwwd.jpg

            Then under operations I added the name for the following operation....

            reload.jpg

            With this running in the controller and the watchdog enabled on the uno gateway node I seem to have a good and stable result for the last 7 or 8 weeks.

            Maybe someone else has a better way to do it? If so, I'll be interested as well!

            Once the GW is reloaded you can then send reboot command using info in my first post to any node you want.

            one-reply-to-this-post last-reply-time reply quote 0
            • D offline
              Daniele
              global:last-edited-by,

              I understand your solution, but what happens to me is a bit more strange: the gw appears online in MyController, but it's nodes are offline, so I need to check if multiple nodes of the same gw are offline to decide to reboot it (to make things more complicated, I have 3 gws since my house is made of concrete and the transmission range is very short).
              What I could do (I'll try later today) is to build a condition script that counts the offline nodes, and if there are more than a threshold than I can start an operation that reboots the gw.

              skywatchS one-reply-to-this-post last-reply-time reply quote 0
              • skywatchS offline
                skywatch @Daniele
                global:last-edited-by, skywatch

                @Daniele That is the opposite of what I have - here my GW is 'up' in mycontroller but node 0 is 'down' and yet it is working perfectly with myc and all nodes!

                If this is a random thing I would suggest triple checking all connections individually to ensure they are tight and no movement at all can happen. I took out a DC barrel connector and replaced it and things got a lot better from just that one change.

                I also put the arduino watchdog on the GW node as another way to recover from any 'hangs'.

                I added the previously posted operations as another way to tackle problems with the gw, but not sure how to tell if it is working as expected!

                Finally I upgraded the pi from stretch to buster and fully updated everything.

                Since then I have had 7-8 weeks without any issues (previously 1-2 weeks was about all I could hope for).

                I still have a ups on my to do list. That will happen soon I hope.

                jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                • jkandasaJ offline
                  jkandasa @skywatch
                  global:last-edited-by,

                  @Daniele some example to send the payload.
                  Note: I didn't test this in practice. Please let me know if you face an issue.

                  var myImports = new JavaImporter(java.lang, java.util, org.mycontroller.standalone.utils.McUtils);
                  
                  with(myImports) {
                    // get your node/sensor/variable via uuid
                    var mySensorVariable = mcApi.uidTag().getByUid("abc").getResource();
                    
                    // set new value
                    mySensorVariable.value  = 2
                    
                    // send paylaod
                    mcApi.sensor().sendPayload(mySensorVariable);
                  }
                  
                  one-reply-to-this-post last-reply-time reply quote 0
                  • D offline
                    Daniele
                    global:last-edited-by,

                    @jkandasa thank you for the example, but how can I leverage it to reboot a node?
                    I mean, as far as I understand the reboot payload is not a regular sensor that I can map through a uid.

                    jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                    • jkandasaJ offline
                      jkandasa @Daniele
                      global:last-edited-by,

                      @Daniele I have modified the script and here is your request,

                      var myImports = new JavaImporter(java.lang, java.util, org.mycontroller.standalone.utils.McUtils, org.mycontroller.standalone.message.IMessage);
                      
                      with(myImports) {
                        // get your gateway via uuid
                        var myGateway = mcApi.uidTag().getByUid("my-test-gateway").getResource();
                        
                        // Import message type
                        var Message = Java.type("org.mycontroller.standalone.message.IMessage")
                        
                        // create message object
                        var message = Message.getInstance()
                        
                        // update gateway id.
                        message.setGatewayId(myGateway.id)
                        
                        // update message type
                        message.setType("Internal")
                        
                        // update message sub type
                        message.setSubType("Reboot")
                        
                        // set sensor id as 255 for node message
                        message.setSensorId("255")
                        
                        // set acknowledgement status
                        message.setAck(0)
                        
                        // set empty payload, but json conversion throws excepton for empty, so set it as "0"
                        message.setPayload("0")
                        
                        // update your node EUI
                        message.setNodeEui(21)
                        
                        // send Raw Message
                        mcApi.sensor().sendRawMessage(message);
                      }
                      
                      
                      one-reply-to-this-post last-reply-time reply quote 0
                      • D offline
                        Daniele
                        global:last-edited-by,

                        Amazing, thank you!

                        one-reply-to-this-post last-reply-time reply quote 0
                        • R offline
                          Radi-M
                          global:last-edited-by, Radi-M

                          Hi all,

                          I have a similar problem with Raspberry PI and MySensors Serial Node with NRF radio.
                          After a random time the node service on RPI stops working:

                          c1398a70-e1c5-4de6-8652-bff918bba715-image.png

                          To restart the service I need to run 'sudo systemctl restart mysgw.service'.
                          Currently, I have scheduled a script to do that, which decrease problem frequency, however, it still happens.

                          Q: Is there a way to run this console command from the MyController script when the selected node is down?

                          jkandasa it would be great if you can provide an example.

                          Many Thanks.

                          jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                          • jkandasaJ offline
                            jkandasa @Radi-M
                            global:last-edited-by, jkandasa

                            @Radi-M can you try this and let me know,

                            var myImports = new JavaImporter(java.lang, java.util);
                            
                            with(myImports) {
                              // your command to execute
                              var command = "sudo systemctl restart mysgw.service";
                              
                              // execute your command
                              mcApi.osCommandExecuter().executeLinuxCommand(command);
                            }
                            
                            one-reply-to-this-post last-reply-time reply quote 0
                            • R offline
                              Radi-M
                              global:last-edited-by,

                              Hi,

                              It works.

                              Many thanks.
                              Radi-M

                              one-reply-to-this-post last-reply-time reply quote 1
                              • skywatchS offline
                                skywatch
                                global:last-edited-by,

                                Probably a stupid question, but will this reboot all mys GW attached to the pi?

                                jkandasaJ one-reply-to-this-post last-reply-time reply quote 0
                                • jkandasaJ offline
                                  jkandasa @skywatch
                                  global:last-edited-by,

                                  Probably a stupid question, but will this reboot all mys GW attached to the pi?

                                  @skywatch Yes, it will. if your mys GW powered by RPI

                                  one-reply-to-this-post last-reply-time reply quote 0
                                  • first-post
                                    last-post

                                  0

                                  online

                                  644

                                  users

                                  532

                                  topics

                                  3.4k

                                  posts
                                  Copyright © 2015-2025 MyController.org | Contributors | Localization