2017-04-07 50 views
0

錯誤 - 提示以下錯誤:試圖執行在命令提示符中陳述CF API https://api.ng.bluemix.net

C:\users\Blue mix> cf API https://api.ng.bluemix.net 

Setting API endpoint to https://api.ng.bluemix.net... 
Request error: Get https://api.ng.bluemix.net/v2/info: http: error connecting to 
proxy http://my.proxyserver.com:8080: dial tcp : lookup my.proxy server.com: GET Address inflow : No such host is known. 
TIP: If you are behind a firewall and require an HTTP proxy, verify the HTTPS_proxy environment variable is correctly set. Else, check your network connection. 
FAILED 

請問請問我該如何解決這個問題?

+0

你問過嗎?它與你的設置有關嗎? – nitind

回答

0

看起來你已經配置了https_proxy變量? https://docs.cloudfoundry.org/cf-cli/http-proxy.html

錯誤消息表明您已設置爲代理服務器的主機名不能被解析爲IP地址。


更新:

您可以驗證,如果你的機器能夠通過Ping您的訪問代理服務器,例如解決代理服務器的主機名

C:\> ping my.proxyserver.com 

如果無法解析主機名代理的IP地址平安將報告。例如。

C:\> ping my.proxyserver.com 
Ping request could not find host my.proxyserver.com. Please check the name and try again. 

如果無法解析爲IP地址,則需要先解決該問題。看到這裏的一些提示:https://support.rackspace.com/how-to/modify-your-hosts-file/

相關問題