Skip to main content

FAQ

DNS Resolution Error - Failed to resolve 'arweave.net'

Issue: When running the ELT process, you encounter the following error message:

urllib3.exceptions.MaxRetryError: [...]: 
Max retries exceeded with url: /7iN4ABrn4Mh8GMQBmryq_5AsC9VuKgyggcr5ZJ1sgEk ([...] Failed to resolve 'arweave.net'))

This error is most likely due to DNS resolution issues.

Solution: To resolve DNS resolution errors, you can change your DNS server to use a more reliable option such as Cloudflare's 1.1.1.1 or Google's 8.8.8.8. Here are instructions for changing the DNS server on different operating systems:

  1. Open the terminal.
  2. Edit the `/etc/resolv.conf` file using your preferred text editor. For example:
    sudo nano /etc/resolv.conf
  3. Add the following lines at the top of the file to set your DNS server to `1.1.1.1`:
    nameserver 1.1.1.1
  4. Save the file and exit the text editor.
  5. Restart your network manager or networking service to apply the changes. The command may vary depending on your Linux distribution. For example:
    sudo systemctl restart network-manager

Note: After changing your DNS server, you may need to restart your network connection or computer to apply the new settings.

More Information: If you continue to experience issues after changing your DNS server, please check your network configuration and ensure that your internet connection is stable.