Advertisement
Guest User

Untitled

a guest
Dec 9th, 2022
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.65 KB | None | 0 0
  1. 2022-12-09 15:34:24,844:DEBUG:certbot._internal.main:certbot version: 2.0.0
  2. 2022-12-09 15:34:24,844:DEBUG:certbot._internal.main:Location of certbot entry point: /usr/local/bin/certbot
  3. 2022-12-09 15:34:24,844:DEBUG:certbot._internal.main:Arguments: ['--webroot', '--webroot-path', '/usr/share/nginx/html/react', '--dry-run', '-d', 'anamazingwizard.com']
  4. 2022-12-09 15:34:24,844:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
  5. 2022-12-09 15:34:24,859:DEBUG:certbot._internal.log:Root logging level set at 30
  6. 2022-12-09 15:34:24,862:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
  7. 2022-12-09 15:34:24,865:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
  8. Description: Place files in webroot directory
  9. Interfaces: Authenticator, Plugin
  10. Entry point: webroot = certbot._internal.plugins.webroot:Authenticator
  11. Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0x7f9b70462920>
  12. Prep: True
  13. 2022-12-09 15:34:24,865:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0x7f9b70462920> and installer None
  14. 2022-12-09 15:34:24,865:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
  15. 2022-12-09 15:34:25,072:DEBUG:acme.client:Sending GET request to https://acme-staging-v02.api.letsencrypt.org/directory.
  16. 2022-12-09 15:34:25,075:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-staging-v02.api.letsencrypt.org:443
  17. 2022-12-09 15:34:26,079:DEBUG:certbot._internal.log:Exiting abnormally:
  18. Traceback (most recent call last):
  19. File "/usr/local/lib/python3.10/site-packages/urllib3/connection.py", line 174, in _new_conn
  20. conn = connection.create_connection(
  21. File "/usr/local/lib/python3.10/site-packages/urllib3/util/connection.py", line 72, in create_connection
  22. for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
  23. File "/usr/local/lib/python3.10/socket.py", line 955, in getaddrinfo
  24. for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
  25. socket.gaierror: [Errno -3] Try again
  26.  
  27. During handling of the above exception, another exception occurred:
  28.  
  29. Traceback (most recent call last):
  30. File "/usr/local/lib/python3.10/site-packages/urllib3/connectionpool.py", line 703, in urlopen
  31. httplib_response = self._make_request(
  32. File "/usr/local/lib/python3.10/site-packages/urllib3/connectionpool.py", line 386, in _make_request
  33. self._validate_conn(conn)
  34. File "/usr/local/lib/python3.10/site-packages/urllib3/connectionpool.py", line 1042, in _validate_conn
  35. conn.connect()
  36. File "/usr/local/lib/python3.10/site-packages/urllib3/connection.py", line 358, in connect
  37. self.sock = conn = self._new_conn()
  38. File "/usr/local/lib/python3.10/site-packages/urllib3/connection.py", line 186, in _new_conn
  39. raise NewConnectionError(
  40. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f9b704627d0>: Failed to establish a new connection: [Errno -3] Try again
  41.  
  42. During handling of the above exception, another exception occurred:
  43.  
  44. Traceback (most recent call last):
  45. File "/usr/local/lib/python3.10/site-packages/requests/adapters.py", line 489, in send
  46. resp = conn.urlopen(
  47. File "/usr/local/lib/python3.10/site-packages/urllib3/connectionpool.py", line 787, in urlopen
  48. retries = retries.increment(
  49. File "/usr/local/lib/python3.10/site-packages/urllib3/util/retry.py", line 592, in increment
  50. raise MaxRetryError(_pool, url, error or ResponseError(cause))
  51. urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='acme-staging-v02.api.letsencrypt.org', port=443): Max retries exceeded with url: /directory (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f9b704627d0>: Failed to establish a new connection: [Errno -3] Try again'))
  52.  
  53. During handling of the above exception, another exception occurred:
  54.  
  55. Traceback (most recent call last):
  56. File "/usr/local/bin/certbot", line 33, in <module>
  57. sys.exit(load_entry_point('certbot', 'console_scripts', 'certbot')())
  58. File "/opt/certbot/src/certbot/certbot/main.py", line 19, in main
  59. return internal_main.main(cli_args)
  60. File "/opt/certbot/src/certbot/certbot/_internal/main.py", line 1736, in main
  61. return config.func(config, plugins)
  62. File "/opt/certbot/src/certbot/certbot/_internal/main.py", line 1572, in certonly
  63. le_client = _init_le_client(config, auth, installer)
  64. File "/opt/certbot/src/certbot/certbot/_internal/main.py", line 827, in _init_le_client
  65. acc, acme = _determine_account(config)
  66. File "/opt/certbot/src/certbot/certbot/_internal/main.py", line 735, in _determine_account
  67. acc, acme = client.register(
  68. File "/opt/certbot/src/certbot/certbot/_internal/client.py", line 207, in register
  69. acme = acme_from_config_key(config, key)
  70. File "/opt/certbot/src/certbot/certbot/_internal/client.py", line 72, in acme_from_config_key
  71. directory = acme_client.ClientV2.get_directory(config.server, net)
  72. File "/opt/certbot/src/acme/acme/client.py", line 303, in get_directory
  73. return messages.Directory.from_json(net.get(url).json())
  74. File "/opt/certbot/src/acme/acme/client.py", line 678, in get
  75. self._send_request('GET', url, **kwargs), content_type=content_type)
  76. File "/opt/certbot/src/acme/acme/client.py", line 620, in _send_request
  77. response = self.session.request(method, url, *args, **kwargs)
  78. File "/usr/local/lib/python3.10/site-packages/requests/sessions.py", line 587, in request
  79. resp = self.send(prep, **send_kwargs)
  80. File "/usr/local/lib/python3.10/site-packages/requests/sessions.py", line 701, in send
  81. r = adapter.send(request, **kwargs)
  82. File "/usr/local/lib/python3.10/site-packages/requests/adapters.py", line 565, in send
  83. raise ConnectionError(e, request=request)
  84. requests.exceptions.ConnectionError: HTTPSConnectionPool(host='acme-staging-v02.api.letsencrypt.org', port=443): Max retries exceeded with url: /directory (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f9b704627d0>: Failed to establish a new connection: [Errno -3] Try again'))
  85. 2022-12-09 15:34:26,086:ERROR:certbot._internal.log:An unexpected error occurred:
  86. 2022-12-09 15:34:26,087:ERROR:certbot._internal.log:requests.exceptions.ConnectionError: HTTPSConnectionPool(host='acme-staging-v02.api.letsencrypt.org', port=443): Max retries exceeded with url: /directory (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f9b704627d0>: Failed to establish a new connection: [Errno -3] Try again'))
  87.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement