I know this an old thread but it seems to have most of the knowledge and people who may know what I have either done wrong or, not yet done.
I have just started on the journey to integrate my GE/Concord system into HA. I bought the serial adapter GE/INTERLOGIX SECURITY Superbus 2000 Automation Module 42-400 Rev G and have installed this with just 4 wires (+12V, GND, BUS A and BUS B). Is that right? There are six screw terminals.
I am using a Pi 4 2GB as the remote Concord232_server running Buster. I have the line
sudo concord232_server --listen 127.0.0.1 --serial /dev/ttyUSB0 # becaue it really is ttyUSB0 in crontab so that it starys at boot.
When I type: ‘concord232_client summary’ I get a screenful of error messages each time I run it.
I am accessing the Pi via ssh since the concord and the Pi are in my walk in closet. So far I have not progressed to even trying HA. I need to fix this first.
Here the error messages I am seeing each time. Any help is most welcome.
Thanks
Pete
pi@Sec:~ $ concord232_client summary
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 162, in _new_conn
(self._dns_host, self.port), self.timeout, **extra_kw)
File "/usr/lib/python3/dist-packages/urllib3/util/connection.py", line 80, in create_connection
raise err
File "/usr/lib/python3/dist-packages/urllib3/util/connection.py", line 70, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 600, in urlopen
chunked=chunked)
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 354, in _make_request
conn.request(method, url, **httplib_request_kw)
File "/usr/lib/python3.7/http/client.py", line 1264, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/usr/lib/python3.7/http/client.py", line 1310, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/usr/lib/python3.7/http/client.py", line 1259, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/usr/lib/python3.7/http/client.py", line 1034, in _send_output
self.send(msg)
File "/usr/lib/python3.7/http/client.py", line 974, in send
self.connect()
File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 184, in connect
conn = self._new_conn()
File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 171, in _new_conn
self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb036ce80>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/requests/adapters.py", line 449, in send
timeout=timeout
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 638, in urlopen
_stacktrace=sys.exc_info()[2])
File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 399, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='localhost', port=5007): Max retries exceeded with url: /zones (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fb036ce80>: Failed to establish a new connection: [Errno 111] Connection refused'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/bin/concord232_client", line 135, in <module>
main()
File "/usr/local/bin/concord232_client", line 128, in main
do_summary(clnt, args)
File "/usr/local/bin/concord232_client", line 63, in do_summary
for zone in sorted(clnt.list_zones(), key=lambda k: k['number']) :
File "/usr/local/lib/python3.7/dist-packages/concord232/client.py", line 13, in list_zones
r = self._session.get(self._url + '/zones')
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 548, in get
return self.request('GET', url, **kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 535, in request
resp = self.send(prep, **send_kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 648, in send
r = adapter.send(request, **kwargs)
File "/usr/lib/python3/dist-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='localhost', port=5007): Max retries exceeded with url: /zones (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fb036ce80>: Failed to establish a new connection: [Errno 111] Connection refused'))