• Categories
    • Recent
    • Tags
    • Popular
    • Register
    • Login

    Client does not have read permissions

    Scheduled Pinned Locked Moved General Discussion
    11 Posts 2 Posters 1.1k Views 1 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • jkandasaJ Offline
      jkandasa @saturn
      last edited by

      @saturn on the role you should add /# as follows,

      • Topics publish: house-in/#, house-out/#
      • Topics subscribe: house-in/#, house-out/#
      1 Reply Last reply Reply Quote 0
      • S Offline
        saturn
        last edited by

        Thank you.
        It's working now.
        Is it posible to use mask or regexp for topics in the role?

        jkandasaJ 1 Reply Last reply Reply Quote 0
        • jkandasaJ Offline
          jkandasa @saturn
          last edited by

          @saturn

          Is it possible to use mask or regexp for topics in the role?

          I hope it should,

          You can see the actual code here.

          // _topic: defined in role
          // topic: recived from client
           _topic = _topic.replaceAll("\\+", "\\\\w+").replaceAll("#", "\\.*");
           if (topic.matches(_topic)) {
               return true;
           }
          

          This code replaces,

          • + to \w+ (Example: house-out/+/+/+ becomes as house-out/\w+/\w+/\w+)
          • # to .* (Example: house-out/# becomes as house-out/.*)

          And finally matches the received topic from the client(matches as a regular expression).

          So your regular expression on the role might work. (if it does not have + and # symbol)

          1 Reply Last reply Reply Quote 0
          • S Offline
            saturn
            last edited by

            I have got error again:

            2018-05-30 00:14:40,149 ERROR [nioEventLoopGroup-8-10] [io.moquette.spi.impl.ProtocolProcessor:851] Client does not have read permissions on the topic CId=house-1, username=house, messageId=2, topic=house-in/+/+/+/+/+
            

            My options not help:
            Topics publish

            house-in, house-in/#, house-in/+/+/+/+/+, house-in/\w+/\w+/\w+/\w+/\w+, house-out/+/+/+/+/+, house-out/\w+/\w+/\w+/\w+/\w+
            

            Topics subscribe

            house-out, house-out/#, house-out/+/+/+/+/+, house-out/\w+/\w+/\w+/\w+/\w+, house-in/+/+/+/+/+, house-in/\w+/\w+/\w+/\w+/\w+
            

            What I do wrong again?

            jkandasaJ 1 Reply Last reply Reply Quote 0
            • jkandasaJ Offline
              jkandasa @saturn
              last edited by jkandasa

              @saturn Use + or # only.

              use only house-in/#, house-out/# will cover everything.

              Can you elaborate how you want to control topic? I can give some examples.

              1 Reply Last reply Reply Quote 0
              • S Offline
                saturn
                last edited by

                When I use only "house-in/#, house-out/#" in "Topics publish" and "Topics subscribe" I get the same error:

                ERROR [nioEventLoopGroup-8-10] [io.moquette.spi.impl.ProtocolProcessor:851] Client does not have read permissions on the topic CId=house-1, username=house, messageId=2, topic=house-in/+/+/+/+/+
                

                I want to control MySensors network by sending data to the "house-in" and get statistic and status information from "house-out".

                1 Reply Last reply Reply Quote 0
                • S Offline
                  saturn
                  last edited by saturn

                  May be I misunderstand you.
                  I think you mean that, I should use

                  +
                  

                  instead of

                  \w+
                  

                  and

                  #
                  

                  instead of

                  .*
                  

                  in role's settings.
                  But my problems with read permissions was resolved only when I add

                  house-out/.*, house-in/.*
                  

                  to the role's settings.
                  Thank you for your help.

                  jkandasaJ 1 Reply Last reply Reply Quote 0
                  • jkandasaJ Offline
                    jkandasa @saturn
                    last edited by

                    @saturn

                    This one does not work for you?

                    house-out/#, house-in/#
                    
                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      saturn @jkandasa
                      last edited by

                      @jkandasa
                      With

                      house-out/#, house-in/#
                      

                      I get

                      Client does not have read permissions on the topic CId=house-1, username=house, messageId=2, topic=house-in/+/+/+/+/+```
                      jkandasaJ 1 Reply Last reply Reply Quote 0
                      • jkandasaJ Offline
                        jkandasa @saturn
                        last edited by

                        @saturn

                        house-out/#, house-in/#
                        

                        You should add this to both subscribe and publish topics. Can you show your MQTT client code?

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post

                        0

                        Online

                        587

                        Users

                        529

                        Topics

                        3.4k

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