Hi, I have the problem about local client connection refused error.
It worked fine, but the connection is refused during the process of changing vectorizer model.
Since then the connection has been refused.
I think maybe… the many connections are opend but not closed during the process.
I tried all solutions expressed in this community.
But I could not solve this.
And I checked the docker compose containers, their status is ‘restarting’ continuously…
So their ports are not connected.
I need some help.
The error logs are like this:
[root@vector-12 ~]# python
Python 3.9.19 (main, May 13 2024, 09:18:13)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux
Type “help”, “copyright”, “credits” or “license” for more information.
import weaviate
c = weaviate.connect_to_local()
Traceback (most recent call last):
File “/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py”, line 69, in map_httpcore_exceptions
yield
File “/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py”, line 233, in handle_request
resp = self._pool.handle_request(req)
File “/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py”, line 216, in handle_request
raise exc from None
File “/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection_pool.py”, line 196, in handle_request
response = connection.handle_request(
File “/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py”, line 99, in handle_request
raise exc
File “/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py”, line 76, in handle_request
stream = self._connect(request)
File “/usr/local/lib/python3.9/site-packages/httpcore/_sync/connection.py”, line 122, in _connect
stream = self._network_backend.connect_tcp(**kwargs)
File “/usr/local/lib/python3.9/site-packages/httpcore/_backends/sync.py”, line 213, in connect_tcp
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
File “/usr/local/lib/python3.9/contextlib.py”, line 137, in exit
self.gen.throw(typ, value, traceback)
File “/usr/local/lib/python3.9/site-packages/httpcore/_exceptions.py”, line 14, in map_exceptions
raise to_exc(exc) from exc
httpcore.ConnectError: [Errno 111] Connection refused
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/v4.py”, line 250, in _create_clients
response = client.get(oidc_url)
File “/usr/local/lib/python3.9/site-packages/httpx/_client.py”, line 1054, in get
return self.request(
File “/usr/local/lib/python3.9/site-packages/httpx/_client.py”, line 827, in request
return self.send(request, auth=auth, follow_redirects=follow_redirects)
File “/usr/local/lib/python3.9/site-packages/httpx/_client.py”, line 914, in send
response = self._send_handling_auth(
File “/usr/local/lib/python3.9/site-packages/httpx/_client.py”, line 942, in _send_handling_auth
response = self._send_handling_redirects(
File “/usr/local/lib/python3.9/site-packages/httpx/_client.py”, line 979, in _send_handling_redirects
response = self._send_single_request(request)
File “/usr/local/lib/python3.9/site-packages/httpx/_client.py”, line 1015, in _send_single_request
response = transport.handle_request(request)
File “/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py”, line 233, in handle_request
resp = self._pool.handle_request(req)
File “/usr/local/lib/python3.9/contextlib.py”, line 137, in exit
self.gen.throw(typ, value, traceback)
File “/usr/local/lib/python3.9/site-packages/httpx/_transports/default.py”, line 86, in map_httpcore_exceptions
raise mapped_exc(message) from exc
httpx.ConnectError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File “”, line 1, in
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/helpers.py”, line 157, in connect_to_local
return __connect(client)
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/helpers.py”, line 345, in __connect
raise e
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/helpers.py”, line 341, in __connect
client.connect()
File “/usr/local/lib/python3.9/site-packages/weaviate/client.py”, line 287, in connect
self._connection.connect(self.__skip_init_checks)
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/v4.py”, line 674, in connect
super().connect(skip_init_checks)
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/v4.py”, line 137, in connect
self._create_clients(self._auth, skip_init_checks)
File “/usr/local/lib/python3.9/site-packages/weaviate/connect/v4.py”, line 252, in _create_clients
raise WeaviateConnectionError(
weaviate.exceptions.WeaviateConnectionError: Connection to Weaviate failed. Error: [Errno 111] Connection refused.
Is Weaviate running and reachable at http://localhost:8080?
I used the weaviate-client v4 / python version 3.9.19
I used the 3 weaviate containers with docker compose
I have to solve this problem in few days.
Anyone help me.
Thanks.