Closed GoogleCodeExporter closed 9 years ago
I exactly repeated your steps, and did not succeed in reproducing the bug.
CoAP server does not bind with another config and daemon script. Config and
daemon file used are attached.
# check TCP listening socket for python
pi@raspberrypi ~/test $ sudo netstat -antp | grep python
# None
# check UDP listening socket for python
pi@raspberrypi ~/test $ sudo netstat -anup | grep python
# None
# see if there is any webiopi running
pi@raspberrypi ~/test $ sudo ps aux | grep webiopi
pi 6531 0.0 0.3 3536 804 pts/0 S+ 13:02 0:00 grep
--color=auto webiopi
# None
# start the daemon
pi@raspberrypi ~/test $ sudo ./daemon start
# should have 1 TCP listening socket
pi@raspberrypi ~/test $ sudo netstat -antp | grep python
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN
6545/python3
# should have 0 UDP listening socket
pi@raspberrypi ~/test $ sudo netstat -anup | grep python
# check the command line used to launch webiopi
pi@raspberrypi ~/test $ sudo ps aux | grep webiopi
root 6545 14.2 5.5 26248 12204 ? Sl 13:02 0:02
/usr/bin/python3 -m webiopi -l /home/pi/test/webiopi.log -c /home/pi/test/config
pi 6554 0.0 0.3 3536 804 pts/0 S+ 13:02 0:00 grep
--color=auto webiopi
# see webiopi log
pi@raspberrypi ~/test $ tail -n 3 webiopi.log
2013-04-06 13:02:18 - WebIOPi - INFO - Loading configuration from
/home/pi/test/config
2013-04-06 13:02:18 - WebIOPi - INFO - Access protected using
/etc/webiopi/passwd
2013-04-06 13:02:18 - WebIOPi - INFO - HTTP Server binded on
http://192.168.1.234:8000/
Original comment by tro...@trouch.com
on 6 Apr 2013 at 11:10
Attachments:
also tried with python 2.7, it works too on my side.
Original comment by tro...@trouch.com
on 6 Apr 2013 at 11:11
I did some other check, because COAP was launching every time.
If I disable my custom script in webiopi.confif in [SCRIPTS] section COAP is
not launched, if I add it's launched.
Should it be explained because I am using "old stile" server scripting instead
of using setup() loop() destroy() ?
porta=8081
server = webiopi.Server(port=porta, login="webiopi", password="raspberry")
Original comment by leo.ricc...@gmail.com
on 7 Apr 2013 at 8:31
[deleted comment]
use webiopi.Server(config="/path/to/config")
or webiopi.Server(..., coap_port=None)
Original comment by tro...@trouch.com
on 8 Apr 2013 at 6:37
Original issue reported on code.google.com by
leo.ricc...@gmail.com
on 5 Apr 2013 at 11:19