root@iZwz9h5tizjqqur6xbkjylZ:~# scp D:/new3/newuniversityguidance-master/target/college-system-0.0.2-SNAPSHOT.jar 47.106.187.227@47.106.187.227:/www/wwwroot/back-end/college-system-test/ ssh: Could not resolve hostname d: Temporary failure in name resolution怎样改
时间: 2023-12-23 17:06:14 浏览: 89
curl https://github.com/curl/curl.git
在你的命令中,你使用了两次 IP 地址 "47.106.187.227",这是不正确的语法。在 scp 命令中,你应该只在目标远程服务器的地址前面指定用户名,而不是在 IP 地址前面。请修改你的命令,将用户名和 IP 地址分开,像这样:
```
scp D:/new3/newuniversityguidance-master/target/college-system-0.0.2-SNAPSHOT.jar 47.106.187.227:/www/wwwroot/back-end/college-system-test/
```
请确保你已经使用正确的语法,并且在本地计算机上执行此命令。如果你仍然遇到 "Temporary failure in name resolution" 错误,请检查你的网络连接是否正常,以及你是否输入了正确的 IP 地址。
阅读全文