Problems connect to houston on windows: No connection could be made because the target machine actively refused it

when i issue the command, quantrocket houston ping
i get the following error:
it was working yesterday so i believe the config is ok
any help would be appreciated
thanks
darryl

-----------------------------------------error message-------------------------------------------------------------------------
PS C:\Users\Darryl> quantrocket houston ping
Traceback (most recent call last):
File "c:\products\anaconda3\lib\site-packages\urllib3\connection.py", line 141, in _new_conn
(self.host, self.port), self.timeout, **extra_kw)
File "c:\products\anaconda3\lib\site-packages\urllib3\util\connection.py", line 83, in create_connection
raise err
File "c:\products\anaconda3\lib\site-packages\urllib3\util\connection.py", line 73, in create_connection
sock.connect(sa)
ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "c:\products\anaconda3\lib\site-packages\urllib3\connectionpool.py", line 601, in urlopen
chunked=chunked)
File "c:\products\anaconda3\lib\site-packages\urllib3\connectionpool.py", line 357, in _make_request
conn.request(method, url, **httplib_request_kw)
File "c:\products\anaconda3\lib\http\client.py", line 1239, in request
self._send_request(method, url, body, headers, encode_chunked)
File "c:\products\anaconda3\lib\http\client.py", line 1285, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "c:\products\anaconda3\lib\http\client.py", line 1234, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "c:\products\anaconda3\lib\http\client.py", line 1026, in _send_output
self.send(msg)
File "c:\products\anaconda3\lib\http\client.py", line 964, in send
self.connect()
File "c:\products\anaconda3\lib\site-packages\urllib3\connection.py", line 166, in connect
conn = self._new_conn()
File "c:\products\anaconda3\lib\site-packages\urllib3\connection.py", line 150, in _new_conn
self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x000001B5EFB495C0>: Failed to establish a new connection: [WinError 10061] No connection could be made because the target machine actively refused it

Make sure HOUSTON_URL corresponds to the port where houston is listening. Check your HOUSTON_URL environment variable:

Get-Item Env:HOUSTON_URL

Then run docker ps and double-check the houston port in the PORTS column. By default they should both be using port 1969.

thanks
i have included the response from the commands suggested.
they look ok!
i uninstalled a vpn application as quantrocket and vpn does not seem play nicely.
i can now ping houston successfully
however when i try to access: http://localhost:1969/juypter

This localhost page can’t be found
No webpage was found for the web address: http://localhost:1969/juypter

is there something i am missing
thanks
darryl

-------------------------------------------command output------------------------------------------------------------------------------
PS C:\Users\Darryl> Get-Item Env:HOUSTON_URL

Name Value


HOUSTON_URL http://localhost:1969

PS C:\Users\Darryl> docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
074f2173b695 quantrocket/master:0.2.12 "/usr/bin/tini -- uw…" 16 hours ago Up 4 minutes 80/tcp quantrocket_master_1
0d5d0a9fdcde quantrocket/zipline:1.1.1.7 "/usr/bin/tini -- uw…" 16 hours ago Up 4 minutes 80/tcp quantrocket_zipline_1
115278fc4b45 quantrocket/countdown:0.5.1 "/usr/bin/tini -- /u…" 16 hours ago Up 4 minutes 80/tcp quantrocket_countdown-us_1
4c18715fcaf8 quantrocket/history:0.2.6 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp quantrocket_history_1
d26e9fe8b942 quantrocket/launchpad:0.1.15 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp quantrocket_launchpad_1
5af9e7f09d8d quantrocket/moonshot:0.1.4 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp quantrocket_moonshot_1
aba828e5c0d2 quantrocket/fundamental:0.1.4 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp quantrocket_fundamental_1
eefad4f97fd6 quantrocket/account:0.1.0 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp quantrocket_account_1
85c4d8f6d543 quantrocket/db:0.2.1 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp quantrocket_db_1
da69b9114a43 quantrocket/flightlog:0.5.2 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp, 9020/tcp quantrocket_flightlog_1
428eef70d144 quantrocket/houston:0.9.0 "/bin/bash /opt/quan…" 17 hours ago Up 4 minutes 443/tcp, 0.0.0.0:1969->80/tcp quantrocket_houston_1
774db366c546 gliderlabs/logspout:latest "/bin/logspout syslo…" 17 hours ago Up 4 minutes 80/tcp quantrocket_logspout_1
cd8a80177848 quantrocket/ibg:969.2 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp, 4001/tcp, 5900/tcp quantrocket_ibg1_1
8774ec42fd91 quantrocket/license-service:0.6.7 "/usr/bin/tini -- uw…" 17 hours ago Up 4 minutes 80/tcp, 4040/tcp quantrocket_license-service_1

For whatever reason I don't see quantrocket/jupyter in your docker ps output. Make sure it's in your YAML file and then bring it up:

docker-compose -p quantrocket up -d jupyter

well done you have fixed it.
it was in my YAML file but for some reason it never started
thanks
darryl