使用Windows 10,我正在尝试使用gcloud maven插件来部署我的VM管理的appeengine项目。因此,在成功运行 mvn clean install 后,我运行 mvn gcloud:deploy ,它在控制台上输出以下输出失败。
[INFO] Copying certificates for secure access. You may be prompted to create an SSH keypair.
[INFO] DEBUG: Loaded Command Group: ['gcloud', 'compute', 'copy_files']
[INFO] DEBUG: Error copying certificates. Retry 0 of 20.
[INFO] DEBUG: Error copying certificates. Retry 1 of 20.
[INFO] DEBUG: Error copying certificates. Retry 2 of 20.
[INFO] DEBUG: Error copying certificates. Retry 3 of 20.
[INFO] DEBUG: Error copying certificates. Retry 4 of 20.
[INFO] DEBUG: Error copying certificates. Retry 5 of 20.
[INFO] DEBUG: Error copying certificates. Retry 6 of 20.
[INFO] DEBUG: Error copying certificates. Retry 7 of 20.
[INFO] DEBUG: Error copying certificates. Retry 8 of 20.
[INFO] DEBUG: Error copying certificates. Retry 9 of 20.
[INFO] DEBUG: Error copying certificates. Retry 10 of 20.
[INFO] DEBUG: Error copying certificates. Retry 11 of 20.
[INFO] DEBUG: Error copying certificates. Retry 12 of 20.
[INFO] DEBUG: Error copying certificates. Retry 13 of 20.
[INFO] DEBUG: Error copying certificates. Retry 14 of 20.
[INFO] DEBUG: Error copying certificates. Retry 15 of 20.
[INFO] DEBUG: Error copying certificates. Retry 16 of 20.
[INFO] DEBUG: Error copying certificates. Retry 17 of 20.
[INFO] DEBUG: Error copying certificates. Retry 18 of 20.
[INFO] DEBUG: Error copying certificates. Retry 19 of 20.
[INFO] DEBUG: (gcloud.preview.app.deploy) Unable to copy certificates.
[INFO] Traceback (most recent call last):
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\calliope\cli.py", line 609, in Execute
[INFO] result = args.cmd_func(cli=self, args=args)
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\calliope\backend.py", line 1228, in Run
[INFO] resources = command_instance.Run(args)
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\surface\preview\app\deploy.py", line 256, in Run
[INFO] remote_build)
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\api_lib\app\deploy_command_util.py", line 167, in BuildAndPushDockerImages
[INFO] cli, version_id, remote, project) as docker_client:
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\api_lib\app\images\docker_util.py", line 224, in __enter__
[INFO] self._vm = Provision(self._cli, self._name, self._zone, self._project)
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\api_lib\app\images\docker_util.py", line 55, in Provision
[INFO] vm.CopyCerts()
[INFO] File "C:\Program Files\Google\Cloud SDK\google-cloud-sdk\lib\googlecloudsdk\api_lib\app\images\docker_util.py", line 167, in CopyCerts
[INFO] raise exceptions.ToolException('Unable to copy certificates.')
[INFO] ToolException: Unable to copy certificates.
[INFO] ERROR: (gcloud.preview.app.deploy) Unable to copy certificates.
[ERROR] Error: gcloud app command with exit code : 1
我正在使用gcloud maven插件版本2.0.9.90.v20151210如下
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>gcloud-maven-plugin</artifactId>
<version>2.0.9.90.v20151210</version>
<configuration>
<version>test-gcloud-plugin-v1-1x16</version>
<runtime>java7</runtime>
<verbosity>debug</verbosity>
<log_level>info</log_level>
</configuration>
</plugin>
使用最新的云sdk
知道为什么会这样吗?
答案 0 :(得分:1)
我遇到了同样的问题,并将其追溯到App Engine使用int c;
while ((c = getchar()) != EOF && c != '\n')
numberOfChars++;
(Putty安全副本)中的问题。该程序提示您对警告消息说“是”,但是当App Engine运行它时,它会关闭标准输出,因此您无法看到警告。解决方法是,当您看到pscp.exe
错误时,在控制台中键入y
然后enter
。
我已经为Google开了一张票(有关详情,请参阅此处):https://code.google.com/p/google-cloud-sdk/issues/detail?id=529
答案 1 :(得分:0)
您的证书很可能位于受保护的目录中。它发生在我的Mac上,在那里我不得不使用sudo(在Windows世界中runas
)来调用gcloud。