luking-dev / webiopi

Automatically exported from code.google.com/p/webiopi
0 stars 0 forks source link

CoAP server launched even if disabled when using a custom config file #45

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Copy /etc/init.d/webiopi on a custom folder
2. copy /etc/webiopi/config on the same folder as step 1
3. edit webiopi script that you copied in step 1 and configure it to use config 
file that you copied on step 2
4. on config file copied in step 2 disable CoAP server setting enabled to false 
and disabling also multicasting
5. on config file configure your personal script in [SCRIPTS] section
6. if tcp port 8000 is already in use change it to 8081 (just for example)
7. launch webiopi startup script in your custom folder, python will daemonize, 
your script will be loaded, your tcp port will be used according your 
configuration BUT... CoAP server will be launched too even if disabled.

WebIOPi version used?
=>0.6.0

Python version used?
=>2.7.3

Distro used? (WebIOPi has only been tested on Raspbian Wheezy)
=>Raspbian Wheezy

Raspberry Pi board revision? (1 or 2)
=>2

For Javascript side bugs, Browser?
=>Google Chrome but it's the same

I could disable CoAP changing /etc/webiopi/config but when I tried to use 
another config file located in my project folder I could set everything I 
needed but not disabling CoAP server.
I could set disabled in the file but when launching the daemon CoAP is launched 
anyway.

Original issue reported on code.google.com by leo.ricc...@gmail.com on 5 Apr 2013 at 11:19

GoogleCodeExporter commented 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:

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
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