0

when i type

swift stat

i get this error :

HTTPConnectionPool(host='controller', port=8080): Max retries exceeded
with url: /v1/AUTH_d17698cf7bbf4dcc8fc59ed6f7b48052 (Caused by 
NewConnectionError('<urllib3.connection.HTTPConnection object at 
0x7f1c597f9910>: Failed to establish a new connection: [Errno 111] 
Connection refused'))
berndbausch
  • 973
  • 7
  • 11

1 Answers1

0

"connection refused" means either that a firewall is actively refusing access to port 8080 on controller, or that no process is listening at that port.

In the latter case, your Swift proxy server is either not running or configured to listen at a different port than 8080.

berndbausch
  • 973
  • 7
  • 11