Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

React app, pipeline deployment on ionos 1&1 server failing.

Hassan Hassnain February 12, 2022

Hello, 

I am new to bitbucket.  I am trying to depoy my react app on ionos webspace with following config

 


image: node:16

# Workflow Configuration

pipelines:
default:
- parallel:
- step:
name: Build and Test
caches:
- node
script:
- npm install
# CI=true in default variables for Bitbucket Pipelines https://support.atlassian.com/bitbucket-cloud/docs/variables-in-pipelines/
- npm test
- step:
name: Lint the node package
script:
# Run your linter of choice here
- npm install eslint
- npx eslint src
caches:
- node
branches:
master:
- parallel:
- step:
name: Build and Test
caches:
- node
script:
- npm install
# CI=true in default variables for Bitbucket Pipelines https://support.atlassian.com/bitbucket-cloud/docs/variables-in-pipelines/
- npm test
- npm run build
artifacts:
- build/**
- step:
name: Security Scan
script:
# Run a security scan for sensitive data.
- pipe: atlassian/git-secrets-scan:0.5.1
- step:
name: Deploy to Production
deployment: Production
# trigger: manual
clone:
enabled: false
script:
# sync files to IONOS WebSpace
- pipe: atlassian/ftp-deploy:0.3.7
variables:
USER: $USER
PASSWORD: $PASSWORD
SERVER: $SERVER
REMOTE_PATH: '/v3'
LOCAL_PATH: 'build'
getting error 
Deploy to Production
Status: Downloaded newer image for bitbucketpipelines/ftp-deploy:0.3.7
INFO: Starting FTP deployment to access858581656.webspace-data.io:/v3...
mirror: Login failed: 530 Login incorrect.
✔ Deployment finished.

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 12, 2022

I think the error message is pretty clear with the 530 error.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events