question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

curl: (67) Access denied: 530 - The process '/usr/bin/git' failed with exit code 5

See original GitHub issue

Bug Description

I’m Erik, a novice web developer. I want to get GitHub to upload my changed files to the FTP server after every push. I created this issue because, after the push, I get this error message under the action tab. May I have a hand?

My Action Config

on: push
name: FTP feltöltés
jobs:
  FTP-Deploy-Action:
    name: FTP-Deploy-Action
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2.1.0
      with:
        fetch-depth: 2
    - name: FTP-Deploy-Action
      uses: SamKirkland/FTP-Deploy-Action@3.1.1
      with:
        ftp-server: ${{ secrets.FTP_SERVER }}
        ftp-username: ${{ secrets.FTP_USERNAME }}
        ftp-password: ${{ secrets.FTP_PASSWORD }}

My Action Log

   Check failure on line 1 in .github

@github-actions
github-actions
/ FTP-Deploy-Action

.github#L1
The process '/usr/bin/git' failed with exit code 5


 #=#=-#  #                                                                     
  -#O#- #   #                                                                   
  -=#=#   #   #                                                                 
  -=O#- #  #    #                                                               
  -=O=#  #   #   #                                                              
  -=O=-#  #    #   #                                                            
  -=O=- #   #   #     #                                                         
  -=O=-   #   #   #     #                                                       
  curl: (67) Access denied: 530
  Wed Jul  1 12:21:04 UTC 2020: Check if ftp://***:***@ftpx.forpsi.com is accessible.
  #=#=#                                                                         
  ##O#- #                                                                       
  ##O=#  #                                                                      
  #=#=-#  #                                                                     
  -#O#- #   #                                                                   
  -=#=#   #   #                                                                 
  -=O#- #  #    #                                                               
  -=O=#  #   #   #                                                              
  -=O=-#  #    #   #                                                            
  -=O=- #   #   #     #                                                         
  curl: (67) Access denied: 530
  Wed Jul  1 12:21:10 UTC 2020: fatal: Can't access remote 'ftp://***:***@ftpx.forpsi.com', exiting...
##[error]The process '/usr/bin/git' failed with exit code 5

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:2
  • Comments:9 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
SamKirklandcommented, Jul 8, 2020

Error 530 is a FTP access denied issue. It means your username or password entered is not correct (verify you have no special characters in the username/password). Or your account doesn’t have access to connect.

Can you verify you don’t have special characters in your username/password and you can successfully connect with another ftp client (filezilla, your host also has a online login page)

0reactions
AdigitalAgencycommented, Aug 6, 2022

version 4 resolves this. Please upgrade to the latest version.

When I upgrade the version (4.0.0) I receive the below error. Error: Input required and not supplied: server Before the upgrade of the version (initially I had the version 3.1.1), the error was The process ‘/usr/bin/git’ failed with exit code 5 Any idea?

Read more comments on GitHub >

github_iconTop Results From Across the Web

curl: (67) Access denied: 530 - The process '/usr/bin/git' failed ...
I created this issue because, after the push, I get this error message under the action tab. May I have a hand? My...
Read more >
How to fix curl error 67 - Bobcares
curl: (67) Access denied: 530. The common reasons for this error include: Incorrect server name, username, or password combination.
Read more >
the process '/usr/bin/git' failed with exit code 5 - You.com
The process '/usr/bin/git' failed with exit code 5` when using Gtihub . ... curl: (67) Access denied: 530 - The process '/usr/bin/git' failed...
Read more >
Getting `The process '/usr/bin/git' failed with exit code 5` when ...
I found I had to update the ftp-server value by adding the protocol (sftp://) and port number (22). So:.
Read more >
Unable to get yum repo from server to Client using ftp service
Curl error (67): Login denied for ftp://192.168.253.134/pub/AppStream/repodata/repomd.xml [Access denied: 530] Error: Failed to download ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found