How to solve the error of the rsync error: error in IPC code (code 14) at pipe.c(85) [sender=3.1.2]
up vote
0
down vote
favorite
I'm using a command of rsync for making a new directory to save the images the command is rsync -ave --rsync-path="mkdir -p /var/www/html/uploads/ironnetwork/ && rsync" /var/www/html/uploads/ironnetwork/1542607804image.
but while running my code this command will gives me the error the error is
exit status 14: rsync: Failed to exec --rsync-path=mkdir: No such file or directory (2)
rsync error: error in IPC code (code 14) at pipe.c(85) [sender=3.1.2]
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in IPC code (code 14) at io.c(235) [sender=3.1.2]
I also posted this question on stackoverflow the link of the questions is this
Can anybody help me to solve this errors?
command-line bash backup rsync
New contributor
add a comment |
up vote
0
down vote
favorite
I'm using a command of rsync for making a new directory to save the images the command is rsync -ave --rsync-path="mkdir -p /var/www/html/uploads/ironnetwork/ && rsync" /var/www/html/uploads/ironnetwork/1542607804image.
but while running my code this command will gives me the error the error is
exit status 14: rsync: Failed to exec --rsync-path=mkdir: No such file or directory (2)
rsync error: error in IPC code (code 14) at pipe.c(85) [sender=3.1.2]
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in IPC code (code 14) at io.c(235) [sender=3.1.2]
I also posted this question on stackoverflow the link of the questions is this
Can anybody help me to solve this errors?
command-line bash backup rsync
New contributor
1
Your command make no sense.--rsync-path=mkdir
?filePath
?,Localhostip
? What language is this written in?
– waltinator
2 days ago
see the edit now
– ShinChain
2 days ago
1
Please explain what you expect to happen? Do you issue this command tobash
?/bin/sh
? Have you readman bash;man rsync
?
– waltinator
2 days ago
no I dont readman rsync
. This above command I'm showing in the question will gives me the below given error I want to solve this error
– ShinChain
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm using a command of rsync for making a new directory to save the images the command is rsync -ave --rsync-path="mkdir -p /var/www/html/uploads/ironnetwork/ && rsync" /var/www/html/uploads/ironnetwork/1542607804image.
but while running my code this command will gives me the error the error is
exit status 14: rsync: Failed to exec --rsync-path=mkdir: No such file or directory (2)
rsync error: error in IPC code (code 14) at pipe.c(85) [sender=3.1.2]
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in IPC code (code 14) at io.c(235) [sender=3.1.2]
I also posted this question on stackoverflow the link of the questions is this
Can anybody help me to solve this errors?
command-line bash backup rsync
New contributor
I'm using a command of rsync for making a new directory to save the images the command is rsync -ave --rsync-path="mkdir -p /var/www/html/uploads/ironnetwork/ && rsync" /var/www/html/uploads/ironnetwork/1542607804image.
but while running my code this command will gives me the error the error is
exit status 14: rsync: Failed to exec --rsync-path=mkdir: No such file or directory (2)
rsync error: error in IPC code (code 14) at pipe.c(85) [sender=3.1.2]
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in IPC code (code 14) at io.c(235) [sender=3.1.2]
I also posted this question on stackoverflow the link of the questions is this
Can anybody help me to solve this errors?
command-line bash backup rsync
command-line bash backup rsync
New contributor
New contributor
edited 2 days ago
New contributor
asked 2 days ago
ShinChain
11
11
New contributor
New contributor
1
Your command make no sense.--rsync-path=mkdir
?filePath
?,Localhostip
? What language is this written in?
– waltinator
2 days ago
see the edit now
– ShinChain
2 days ago
1
Please explain what you expect to happen? Do you issue this command tobash
?/bin/sh
? Have you readman bash;man rsync
?
– waltinator
2 days ago
no I dont readman rsync
. This above command I'm showing in the question will gives me the below given error I want to solve this error
– ShinChain
2 days ago
add a comment |
1
Your command make no sense.--rsync-path=mkdir
?filePath
?,Localhostip
? What language is this written in?
– waltinator
2 days ago
see the edit now
– ShinChain
2 days ago
1
Please explain what you expect to happen? Do you issue this command tobash
?/bin/sh
? Have you readman bash;man rsync
?
– waltinator
2 days ago
no I dont readman rsync
. This above command I'm showing in the question will gives me the below given error I want to solve this error
– ShinChain
2 days ago
1
1
Your command make no sense.
--rsync-path=mkdir
? filePath
?, Localhostip
? What language is this written in?– waltinator
2 days ago
Your command make no sense.
--rsync-path=mkdir
? filePath
?, Localhostip
? What language is this written in?– waltinator
2 days ago
see the edit now
– ShinChain
2 days ago
see the edit now
– ShinChain
2 days ago
1
1
Please explain what you expect to happen? Do you issue this command to
bash
? /bin/sh
? Have you read man bash;man rsync
?– waltinator
2 days ago
Please explain what you expect to happen? Do you issue this command to
bash
? /bin/sh
? Have you read man bash;man rsync
?– waltinator
2 days ago
no I dont read
man rsync
. This above command I'm showing in the question will gives me the below given error I want to solve this error– ShinChain
2 days ago
no I dont read
man rsync
. This above command I'm showing in the question will gives me the below given error I want to solve this error– ShinChain
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You need to remove the -e
option, as this is taking the following work (--rsync-path=...
) as the replacement for the ssh command. For example,
$ rsync -ave --x_x /tmp/a abc@localhost:/tmp/y
rsync: Failed to exec --x_x: No such file or directory (2)
Just use -av
.
As you say @meuh I remove the flag-e
and then I run the command then it will give me the errorexit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You need to remove the -e
option, as this is taking the following work (--rsync-path=...
) as the replacement for the ssh command. For example,
$ rsync -ave --x_x /tmp/a abc@localhost:/tmp/y
rsync: Failed to exec --x_x: No such file or directory (2)
Just use -av
.
As you say @meuh I remove the flag-e
and then I run the command then it will give me the errorexit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
add a comment |
up vote
0
down vote
You need to remove the -e
option, as this is taking the following work (--rsync-path=...
) as the replacement for the ssh command. For example,
$ rsync -ave --x_x /tmp/a abc@localhost:/tmp/y
rsync: Failed to exec --x_x: No such file or directory (2)
Just use -av
.
As you say @meuh I remove the flag-e
and then I run the command then it will give me the errorexit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
add a comment |
up vote
0
down vote
up vote
0
down vote
You need to remove the -e
option, as this is taking the following work (--rsync-path=...
) as the replacement for the ssh command. For example,
$ rsync -ave --x_x /tmp/a abc@localhost:/tmp/y
rsync: Failed to exec --x_x: No such file or directory (2)
Just use -av
.
You need to remove the -e
option, as this is taking the following work (--rsync-path=...
) as the replacement for the ssh command. For example,
$ rsync -ave --x_x /tmp/a abc@localhost:/tmp/y
rsync: Failed to exec --x_x: No such file or directory (2)
Just use -av
.
answered 2 days ago
meuh
1,951615
1,951615
As you say @meuh I remove the flag-e
and then I run the command then it will give me the errorexit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
add a comment |
As you say @meuh I remove the flag-e
and then I run the command then it will give me the errorexit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
As you say @meuh I remove the flag
-e
and then I run the command then it will give me the error exit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
As you say @meuh I remove the flag
-e
and then I run the command then it will give me the error exit status 1: rsync version 3.1.2 protocol version 31 Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
– ShinChain
2 days ago
add a comment |
ShinChain is a new contributor. Be nice, and check out our Code of Conduct.
ShinChain is a new contributor. Be nice, and check out our Code of Conduct.
ShinChain is a new contributor. Be nice, and check out our Code of Conduct.
ShinChain is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1094136%2fhow-to-solve-the-error-of-the-rsync-error-error-in-ipc-code-code-14-at-pipe-c%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Your command make no sense.
--rsync-path=mkdir
?filePath
?,Localhostip
? What language is this written in?– waltinator
2 days ago
see the edit now
– ShinChain
2 days ago
1
Please explain what you expect to happen? Do you issue this command to
bash
?/bin/sh
? Have you readman bash;man rsync
?– waltinator
2 days ago
no I dont read
man rsync
. This above command I'm showing in the question will gives me the below given error I want to solve this error– ShinChain
2 days ago