The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Generate auto build and upload to ftp server

Abhijeet Choubey
June 30, 2020

Hi, 
I have been trying to generate the build using bitbucket pipelines and upload it to my FTP server. 
But every time I try to run the pipeline, I get this error.

git ftp init --user $FTP_USERNAME --passwd $FTP_PASSWORD $FTP_HOST_PATHfatal: Can't access remote 'ftp://ubuntu:***@mywebsite.com', exiting...

My whole pipeline script looks like this


image: php:7.1.29
pipelines:
default:
- step:
caches:
- composer
script:
- apt-get update && apt-get install -y unzip
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- apt-get -qq install git-ftp
- git ftp init --user $FTP_USERNAME --passwd $FTP_PASSWORD $FTP_HOST_PATH

2 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Abhijeet Choubey
June 30, 2020

Used Rsync instead of git-FTP and it worked. 

0 votes
Abhijeet Choubey
June 30, 2020

Been stuck with this for days. 

ktomk
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 1, 2020

Rsync did help you already (and it's a good utility IMHO), for the original git-ftp problem you were asking about:

In your question the error message just says there was a problem to access the remote location.

This can have a lot of reasons.

To trouble-shoot `git ftp` command, use the `-vv` option for very verbose output. This should normally give better pointers where things go south.

If `-vv` is too verbose, use `-v` to reduce some clutter. It is just verbose then not very verbose.

Like Abhijeet Choubey likes this
TAGS
AUG Leaders

Atlassian Community Events