'bluemix-plugin-repo' 不存在作为可用的插件存储库。检查名称并重试

'bluemix-plugin-repo' does not exist as an available plug-in repo. Check the name and try again

我正在尝试按照 documentation:

中所述设置自动缩放插件
snowch$ bluemix plugin repo-add bluemix-plugin-repo https://plugins.ng.bluemix.net
FAILED
Plug-in repo URL https://plugins.ng.bluemix.net already exists. Try a different URL.

所以我尝试了:

snowch$ bluemix plugin install auto-scaling -r bluemix-plugin-repo
Looking up 'auto-scaling' from repository 'bluemix-plugin-repo'...
FAILED
'bluemix-plugin-repo' does not exist as an available plug-in repo. Check the name and try again.

注意我的版本:

snowch$ bluemix --version
bluemix version 0.5.4+ae22935-2017-05-18T06:24:28+00:00

解决方案是将命令更改为:

snowch$ bluemix plugin install auto-scaling -r bluemix-plugin-repo

至:

snowch$ bluemix plugin install auto-scaling -r Bluemix

默认添加名称为 'Bluemix' 的插件库 https://plugins.ng.bluemix.net,因此在从中安装插件之前无需添加该库。