changedetection.io: (windows) Connection to URL timed out, SOCKSHTTPSConnectionPool error?

SOCKSHTTPSConnectionPool(host='_URL_', port=443): Max retries exceeded with url: _encodedURLstring?_ (Caused by ConnectTimeoutError(<urllib3.contrib.socks.SOCKSHTTPSConnection object at 0x7f21e011fd60>, 'Connection to _URL_ timed out. (connect timeout=15)'))

I’m getting this error for all URLs I try to enter, as well as the default ones.

Installed the docker image today so should have the latest version, running on Windows 10 in Docker Desktop on localhost:5000.

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Comments: 21 (10 by maintainers)

Most upvoted comments

@benninkcorien btw, when I get an actual network layer error, I dont get a SOCKS type error, i get

HTTPSConnectionPool(host='www.php.net', port=443): Max retries exceeded with url: /ChangeLog-7.php (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fac600523a0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution'))```
# curl https://changedetection.io
curl: (7) Failed to connect to 10.10.1.10 port 1080: Connection refused

you need to find out why this is happening… that is where your answer will be

@benninkcorien try this

get inside the container…

docker exec -it changedetection.io bash

then

apt-get update && apt-get install curl -y && curl https://changedetection.io

paste me the output of that