Maven 不会使用公钥来部署
我正在使用 SSH 将我的 Java 工件部署到服务器。我设置了密钥,以便可以交互式 SSH 到服务器而无需密码,但是当我尝试运行“mvn deploy
”或“mvn release:perform”命令,它挂起(我认为是密码提示)。
我的 ~/.m2/settings.xml
文件包含服务器的用户名(因为它与我的本地用户名不同),并引用需要该服务器的 id
不同的用户。
I'm using SSH to deploy my Java artifacts to a server. I have the keys set up so that I can interactively SSH to the server without requiring a password, but when I try to run the "mvn deploy
" or "mvn release:perform
" commands, it hangs (at what I assume is the password prompt).
My ~/.m2/settings.xml
file contains the username for the server (because it is different than my local username) and references the id
of the server that requires the different user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确定您的
settings.xml
提供了所需的一切吗?您是否声明了您的privateKey
(以及必要时的passphrase
)?像这样的事情:Are you sure your
settings.xml
provides everything required? Did you declare yourprivateKey
(and thepassphrase
if necessary)? Something like this:在您的 distributionManagement 部分中,尝试在您的 url 中使用“scpexe://”而不是“scp://”。
这将调用标准 scp 程序(假设它在您的路径上),而不是使用 Maven 中内置的 scp 的 Java 实现。标准 scp 使用 ssh-agent(在 Ubuntu 中,当您通过 GDM 登录时自动启动)进行公钥身份验证。
In your distributionManagement section, try using "scpexe://" in your url instead of "scp://".
This calls the standard scp program (assuming it is on your path), instead of using the Java implementation of scp that is built into Maven. Standard scp uses ssh-agent (which, in Ubuntu, starts automatically when you log in through GDM) for public-key auth.