Can't scp file from server to host
After logging into a server (running linux) via ssh, I am trying to copy a file from said server to my host machine which runs windows 10. I try the command:scp <userID>@<server.name>:/path/to/server/file /path/to/host/dir but I get a connection timeout error every time. I am able to copy a file from my host to server with no problems but I can't seem to do the other way around (server to host). Not sure what I am doing wrong.
Note: these commands are being run in cmd on my host if that makes any difference.
command-line
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
After logging into a server (running linux) via ssh, I am trying to copy a file from said server to my host machine which runs windows 10. I try the command:scp <userID>@<server.name>:/path/to/server/file /path/to/host/dir but I get a connection timeout error every time. I am able to copy a file from my host to server with no problems but I can't seem to do the other way around (server to host). Not sure what I am doing wrong.
Note: these commands are being run in cmd on my host if that makes any difference.
command-line
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Can you provide more information? Tryscp -v <userID>@<server.name>:/path/to/server/file /path/to/host/dirand append it to your question, please.
– Jakub Jindra
56 mins ago
2
"After logging into a server (running linux) via ssh" and "these commands are being run in cmd on my host" seem contradictory to me: if you are executing thescpinside thesshshell, then it is running on the remote server. If you want to "pull" a file from the server to the Windows host, you can use a Windows client such as WinSCP
– steeldriver
43 mins ago
thanks to comment of @steeldriver – I'm thinking about it again. So you've logged from your windows machine to some linux machine on which you're running scp which is trying to retrieve files from your windows machine? Is the<server.name>from your question even running sshd or other ssh daemon?
– Jakub Jindra
37 mins ago
Ok I'll try and clarify. My host machine is windows 10. I am using cmd to login into a server that runs linux. Once I am in the server, I usescpto try and send a file from the server to my host machine.
– cap
27 mins ago
add a comment |
After logging into a server (running linux) via ssh, I am trying to copy a file from said server to my host machine which runs windows 10. I try the command:scp <userID>@<server.name>:/path/to/server/file /path/to/host/dir but I get a connection timeout error every time. I am able to copy a file from my host to server with no problems but I can't seem to do the other way around (server to host). Not sure what I am doing wrong.
Note: these commands are being run in cmd on my host if that makes any difference.
command-line
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
After logging into a server (running linux) via ssh, I am trying to copy a file from said server to my host machine which runs windows 10. I try the command:scp <userID>@<server.name>:/path/to/server/file /path/to/host/dir but I get a connection timeout error every time. I am able to copy a file from my host to server with no problems but I can't seem to do the other way around (server to host). Not sure what I am doing wrong.
Note: these commands are being run in cmd on my host if that makes any difference.
command-line
command-line
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 1 hour ago
capcap
1
1
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
cap is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Can you provide more information? Tryscp -v <userID>@<server.name>:/path/to/server/file /path/to/host/dirand append it to your question, please.
– Jakub Jindra
56 mins ago
2
"After logging into a server (running linux) via ssh" and "these commands are being run in cmd on my host" seem contradictory to me: if you are executing thescpinside thesshshell, then it is running on the remote server. If you want to "pull" a file from the server to the Windows host, you can use a Windows client such as WinSCP
– steeldriver
43 mins ago
thanks to comment of @steeldriver – I'm thinking about it again. So you've logged from your windows machine to some linux machine on which you're running scp which is trying to retrieve files from your windows machine? Is the<server.name>from your question even running sshd or other ssh daemon?
– Jakub Jindra
37 mins ago
Ok I'll try and clarify. My host machine is windows 10. I am using cmd to login into a server that runs linux. Once I am in the server, I usescpto try and send a file from the server to my host machine.
– cap
27 mins ago
add a comment |
1
Can you provide more information? Tryscp -v <userID>@<server.name>:/path/to/server/file /path/to/host/dirand append it to your question, please.
– Jakub Jindra
56 mins ago
2
"After logging into a server (running linux) via ssh" and "these commands are being run in cmd on my host" seem contradictory to me: if you are executing thescpinside thesshshell, then it is running on the remote server. If you want to "pull" a file from the server to the Windows host, you can use a Windows client such as WinSCP
– steeldriver
43 mins ago
thanks to comment of @steeldriver – I'm thinking about it again. So you've logged from your windows machine to some linux machine on which you're running scp which is trying to retrieve files from your windows machine? Is the<server.name>from your question even running sshd or other ssh daemon?
– Jakub Jindra
37 mins ago
Ok I'll try and clarify. My host machine is windows 10. I am using cmd to login into a server that runs linux. Once I am in the server, I usescpto try and send a file from the server to my host machine.
– cap
27 mins ago
1
1
Can you provide more information? Try
scp -v <userID>@<server.name>:/path/to/server/file /path/to/host/dir and append it to your question, please.– Jakub Jindra
56 mins ago
Can you provide more information? Try
scp -v <userID>@<server.name>:/path/to/server/file /path/to/host/dir and append it to your question, please.– Jakub Jindra
56 mins ago
2
2
"After logging into a server (running linux) via ssh" and "these commands are being run in cmd on my host" seem contradictory to me: if you are executing the
scp inside the ssh shell, then it is running on the remote server. If you want to "pull" a file from the server to the Windows host, you can use a Windows client such as WinSCP– steeldriver
43 mins ago
"After logging into a server (running linux) via ssh" and "these commands are being run in cmd on my host" seem contradictory to me: if you are executing the
scp inside the ssh shell, then it is running on the remote server. If you want to "pull" a file from the server to the Windows host, you can use a Windows client such as WinSCP– steeldriver
43 mins ago
thanks to comment of @steeldriver – I'm thinking about it again. So you've logged from your windows machine to some linux machine on which you're running scp which is trying to retrieve files from your windows machine? Is the
<server.name> from your question even running sshd or other ssh daemon?– Jakub Jindra
37 mins ago
thanks to comment of @steeldriver – I'm thinking about it again. So you've logged from your windows machine to some linux machine on which you're running scp which is trying to retrieve files from your windows machine? Is the
<server.name> from your question even running sshd or other ssh daemon?– Jakub Jindra
37 mins ago
Ok I'll try and clarify. My host machine is windows 10. I am using cmd to login into a server that runs linux. Once I am in the server, I use
scp to try and send a file from the server to my host machine.– cap
27 mins ago
Ok I'll try and clarify. My host machine is windows 10. I am using cmd to login into a server that runs linux. Once I am in the server, I use
scp to try and send a file from the server to my host machine.– cap
27 mins ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
cap 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%2funix.stackexchange.com%2fquestions%2f501721%2fcant-scp-file-from-server-to-host%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
cap is a new contributor. Be nice, and check out our Code of Conduct.
cap is a new contributor. Be nice, and check out our Code of Conduct.
cap is a new contributor. Be nice, and check out our Code of Conduct.
cap is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2funix.stackexchange.com%2fquestions%2f501721%2fcant-scp-file-from-server-to-host%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
Can you provide more information? Try
scp -v <userID>@<server.name>:/path/to/server/file /path/to/host/dirand append it to your question, please.– Jakub Jindra
56 mins ago
2
"After logging into a server (running linux) via ssh" and "these commands are being run in cmd on my host" seem contradictory to me: if you are executing the
scpinside thesshshell, then it is running on the remote server. If you want to "pull" a file from the server to the Windows host, you can use a Windows client such as WinSCP– steeldriver
43 mins ago
thanks to comment of @steeldriver – I'm thinking about it again. So you've logged from your windows machine to some linux machine on which you're running scp which is trying to retrieve files from your windows machine? Is the
<server.name>from your question even running sshd or other ssh daemon?– Jakub Jindra
37 mins ago
Ok I'll try and clarify. My host machine is windows 10. I am using cmd to login into a server that runs linux. Once I am in the server, I use
scpto try and send a file from the server to my host machine.– cap
27 mins ago