CURL 작업이 실패했습니다.

CURL 작업이 실패했습니다.

이것을 내 서버에 업로드하고 싶습니다.

curl -u ****:**** -T - sftp://*****.com:22/apps/jboss-5.1.0/server/fab_server/deploy -v -k

문제는 다음 오류가 발생한다는 것입니다.

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0* About to connect() to ****.com port 22 (#0)
*   Trying ****...
* Connected to ****.com (****) port 22 (#0)
* SSH MD5 fingerprint: ****
* SSH authentication methods available: publickey,password,keyboard-interactive
* Using ssh public key file /home/****/.ssh/id_dsa.pub
* Using ssh private key file /home/****/.ssh/id_dsa
* SSH public key authentication failed: Unable to open public key file
* Initialized password authentication
* Authentication complete
* Upload failed: Operation failed (4/-31)
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
* Connection #0 to host ****.com left intact
curl: (79) Upload failed: Operation failed (4/-31)

누구든지 문제를 해결하는 방법을 알고 있나요?

답변1

문제를 해결했습니다. 대상 파일 이름을 지정해야 했습니다.

답변2

다음과 같이 대상 디렉터리 경로에 "/" 문자를 추가하여 동일한 유형의 문제를 해결했습니다.

curl --insecure --user ****:**** -T ./sourcefile.txt sftp://DestinationIP/directory/

관련 정보