rfcomm bluetooth permission denied error raspberry pi

痴心易碎 提交于 2020-08-21 04:53:38

问题


I'm using a bluetooth dongle to try and send information from ubuntu 15.04 to raspberry pi b+ running the latest debian jessie image. I'm just following the http://people.csail.mit.edu/albert/bluez-intro/ tutorial. I got the simple RFCOMM and L2CAP protocols working. I'm having trouble running the SDP protocol. The server code is -

from bluetooth import *

server_sock = BluetoothSocket(RFCOMM)
server_sock.bind(("", PORT_ANY))
server_sock.listen(1)

advertise_service(server_sock, "SampleServer",service_classes=[SERIAL_PORT_CLASS], profiles=[SERIAL_PORT_PROFILE])

client_sock, client_info = server_sock.accept()

print "connection from: ", client_info

client_sock.send("PyBluez server says Hello!")
data = client_sock.recv(1024)
print "received: ", data

client_sock.close()
server_sock.close()

The error I'm getting is -

Traceback (most recent call last):
  File "rfcomm-server.py", line 7, in <module>
    advertise_service(server_sock, "SampleServer",service_classes=[SERIAL_PORT_CLASS], profiles=[SERIAL_PORT_PROFILE])
  File "/usr/lib/python2.7/dist-packages/bluetooth/bluez.py", line 176, in advertise_service
    raise BluetoothError (str (e))
bluetooth.btcommon.BluetoothError: (13, 'Permission denied')

Here are some steps I have taken-

Add the user 'pi' to lp group
run piscan on hciconfig hci0
Add --compat option to bluetoothd in bluetooth.service

Any help would be appreciated. Thanks!


回答1:


Running your script as root kinda works, but it's not a good practice.

According to this thread, you just need to adjust permissions to the /var/run/sdp file (which is created when using the --compat switch).

So, to prevent link rot I'm reproducing dlech's post and adapting it to Raspberry Pi:

  1. make sure your pi user is in the bluetooth group:

    $ cat /etc/group | grep bluetooth
    bluetooth:x:113:pi
    

    1.1. If it's not, add pi to bluetooth group:

    $ sudo usermod -G bluetooth -a pi
    
  2. Change group of the /var/run/sdp file:

    $ sudo chgrp bluetooth /var/run/sdp
    
  3. To make the change persistent after reboot:

    3.1. Create file /etc/systemd/system/var-run-sdp.path with the following content:

    [Unit]
    Descrption=Monitor /var/run/sdp
    
    [Install]
    WantedBy=bluetooth.service
    
    [Path]
    PathExists=/var/run/sdp
    Unit=var-run-sdp.service
    

    3.2. And another file, /etc/systemd/system/var-run-sdp.service:

    [Unit]
    Description=Set permission of /var/run/sdp
    
    [Install]
    RequiredBy=var-run-sdp.path
    
    [Service]
    Type=simple
    ExecStart=/bin/chgrp bluetooth /var/run/sdp
    

    3.3. Finally, start it all up:

    sudo systemctl daemon-reload
    sudo systemctl enable var-run-sdp.path
    sudo systemctl enable var-run-sdp.service
    sudo systemctl start var-run-sdp.path
    

Credit goes to user dlech who "figured it out" originally.




回答2:


And sudo does the job.

sudo python script.py


来源:https://stackoverflow.com/questions/34599703/rfcomm-bluetooth-permission-denied-error-raspberry-pi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!