Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Permission problem Sense Hat node #980

Open
5 tasks done
kafkaah opened this issue Mar 5, 2023 · 0 comments
Open
5 tasks done

Permission problem Sense Hat node #980

kafkaah opened this issue Mar 5, 2023 · 0 comments

Comments

@kafkaah
Copy link

kafkaah commented Mar 5, 2023

Which node are you reporting an issue on?

node-red-node-pi-sense-hat

What are the steps to reproduce?

  • Install node-red-node-pi-sense-hat
  • Use the Sense Hat node (out) in a flow
  • Connect the node to inject with [4-6,*,purple]
  • Deploy the flow

What happens?

  • The Sense Hat node is [disconnected]
  • Log shows:
    pam_unix(sudo:auth): conversation failed
    pam_unix(sudo:auth): auth could not identify password for [nodered]
  • The Sense Hat LED array is blank

Seems like the node is trying to sudo a certain command and cannot without the user passwd. Since I can't find what the node is trying to access using sudo I can't specify that very command in /etc/sudoers as a NOPASSWD. The current workaround basically gives all access to all and any command to the dedicated user I created named nodered.

What do you expect to happen?

  • The Sense Hat node is [connected]
  • The Sense Hat LED array shows 3 vertical purple lines

Please tell us about your environment:

  • Node-RED version: 3.0
  • node.js version: 18
  • npm version: 9.5
  • Platform/OS: Raspberry Pi OS 64 bit latest
  • Browser: Chrome

(Sub-optimal) first workaround

I put this line in /etc/sudoers: nodered ALL=(ALL) NOPASSWD: ALL

Better (current) workaround (March 12)

sudo is not needed when calling the sensehat Python script.

sensehat Python script (Line 18)

Replaced by (no $SUDO):

$python_cmd -u $BASEDIR/sensehat.py $@

My Python installation is pretty much run-of-the-mill (as the configuration of the SenseHat module) and does not require sudo when running the script linked above.

Thanks for your help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant