Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Bitbucket Pipeline - Wget Timeout

Jacopo Orlandini November 29, 2021

Hi, community

WGET (Apache resources)

In a bitbucket pipeline, I have defined some simple bash for getting Apache Ant resources and I frequently got a connection timeout. The following snippet is the result of Wget when it timeouts:


--2021-11-29 11:46:30-- https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.8-bin.tar.gz

Resolving archive.apache.org (archive.apache.org)... 138.201.131.134, 2a01:4f8:172:2ec5::2

Connecting to archive.apache.org (archive.apache.org)|138.201.131.134|:443... failed: Connection timed out.

Connecting to archive.apache.org (archive.apache.org)|2a01:4f8:172:2ec5::2|:443... failed: Network is unreachable.


 

I provide the single step to simulate the error (used image:amazoncorretto:11)

 if [[ ! -d /opt/apache-ant-1.10.8 || ! -f /opt/apache-ant-1.10.8/bin/ant ]]; then 

echo "Ant directory not exists!"

wget https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.8-bin.tar.gz

tar -xzf apache-ant-1.10.8-bin.tar.gz -C /opt

fi
Temporary solution:  I restart the pipeline until a Wget success.
Note: On my localhost, I never experienced this type of error for reaching Apache. Is docker introducing a TLS problem or other issues? Is there a way to fix this connectivity problem?

1 answer

0 votes
Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 17, 2022

Hi @Jacopo Orlandini

Thank you for reaching out to the community.

I did try to run the wget command below in my test Pipelines.
However, I'm able to download the file without issue.
My YAML file configuration looks like below:

image: amazoncorretto:11

pipelines:
  default:
    - step:
        name: Test
        script:
          - yum install wget -y
          - wget https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.8-bin.tar.gz

Would it be possible for you to confirm if you're still experiencing the same issue?

Regards,
Mark C

Jacopo Orlandini February 18, 2022

At this stage, this problem does not occur anymore and I ran multiple pipelines in the meanwhile. Thank you for your investigation. 


Like Mark C likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events