Advertisement
Guest User

Untitled

a guest
Jun 11th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. pi@raspberrypi:~/hot-tub-controller $ python startup.py
  2. startup.py:150: RuntimeWarning: No channels have been set up yet - nothing to clean up! Try cleaning up at the end of your program instead!
  3. GPIO.cleanup()
  4. /home/pi/hot-tub-controller/adc.py:16: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings.
  5. GPIO.setup(self.SPIMOSI, GPIO.OUT)
  6. /home/pi/hot-tub-controller/adc.py:18: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings.
  7. GPIO.setup(self.SPICLK, GPIO.OUT)
  8. /home/pi/hot-tub-controller/adc.py:19: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings.
  9. GPIO.setup(self.SPICS, GPIO.OUT)
  10. [Errno 2] No such file or directory: '/home/pi/config.json'
  11. /home/pi/hot-tub-controller/controller.py:13: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings.
  12. GPIO.OUT, initial=GPIO.LOW)
  13. [11/Jun/2018:21:31:08] ENGINE Listening for SIGHUP.
  14. [11/Jun/2018:21:31:08] ENGINE Listening for SIGTERM.
  15. [11/Jun/2018:21:31:08] ENGINE Listening for SIGUSR1.
  16. [11/Jun/2018:21:31:08] ENGINE Bus STARTING
  17. [11/Jun/2018:21:31:08] ENGINE Started monitor thread '_TimeoutMonitor'.
  18. [11/Jun/2018:21:31:08] ENGINE Started monitor thread 'Autoreloader'.
  19. [11/Jun/2018:21:31:13] ENGINE Error in HTTP server: shutting down
  20. Traceback (most recent call last):
  21. File "/usr/lib/python2.7/dist-packages/cherrypy/process/servers.py", line 205, in _start_http_thread
  22. self.httpserver.start()
  23. File "/usr/lib/python2.7/dist-packages/cherrypy/wsgiserver/wsgiserver2.py", line 1946, in start
  24. self.bind(af, socktype, proto)
  25. File "/usr/lib/python2.7/dist-packages/cherrypy/wsgiserver/wsgiserver2.py", line 2000, in bind
  26. self.socket = self.ssl_adapter.bind(self.socket)
  27. File "/usr/lib/python2.7/dist-packages/cherrypy/wsgiserver/ssl_pyopenssl.py", line 180, in bind
  28. self.context = self.get_context()
  29. File "/usr/lib/python2.7/dist-packages/cherrypy/wsgiserver/ssl_pyopenssl.py", line 193, in get_context
  30. c.use_privatekey_file(self.private_key)
  31. File "/usr/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 655, in use_privatekey_file
  32. self._raise_passphrase_exception()
  33. File "/usr/lib/python2.7/dist-packages/OpenSSL/SSL.py", line 631, in _raise_passphrase_exception
  34. _raise_current_error()
  35. File "/usr/lib/python2.7/dist-packages/OpenSSL/_util.py", line 48, in exception_from_error_queue
  36. raise exception_type(errors)
  37. Error: [('system library', 'fopen', 'No such file or directory'), ('BIO routines', 'file_ctrl', 'system lib'), ('SSL routines', 'SSL_CTX_use_PrivateKey_file', 'system lib')]
  38.  
  39. [11/Jun/2018:21:31:13] ENGINE Bus STOPPING
  40. [11/Jun/2018:21:31:13] ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(('0.0.0.0', 8443)) already shut down
  41. [11/Jun/2018:21:31:13] ENGINE Stopped thread '_TimeoutMonitor'.
  42. [11/Jun/2018:21:31:13] ENGINE Stopped thread 'Autoreloader'.
  43. [11/Jun/2018:21:31:13] ENGINE Bus STOPPED
  44. [11/Jun/2018:21:31:13] ENGINE Bus EXITING
  45. [11/Jun/2018:21:31:13] ENGINE Bus EXITED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement