@
wibile azure中区目前很多低级错误,上次我用他们那个nodejs的cli部署不了,这是azure的工程师们折腾了一周多后的邮件汇总:
尊敬的何先生:
感谢您的确认。很高兴您的问题已经成功解决,我将关闭这个案例。这里是针对这个案例的技术总结,供您参考。(无需回复)
问题描述:
=====================
azure Nodejs cmd无法导入Publish Setting 和部署VM
系统环境/应用程序信息:
=====================
VM/Azure Node.js
问题判定/调研步骤:
=====================
分析问题,按照错误提示逐步调试azure nodejs运行环境
解决方案:
=====================
1. 确保服务端点指向中国Windows Azure
修改nodejs azure安装目录下的constants.js的变量信息,参考文档(
http://www.windowsazure.cn/zh-cn/develop/other/developerdifferences/#_Toc359582677)中的端点映射。2. 修改文件C:\Users\sey.FAREAST\AppData\Roaming\npm\node_modules\azure-cli\lib\util\communityUtil.js,24行:
var WebResource = azureCommon.webResource;
修改为 azureCommon.WebResource
3. 修改文件C:\Users\username\AppData\Roaming\npm\node_modules\azure-cli\lib\commands\asm\vm._js, 将文件中的所有代码
var imageHelper = require('../iaas/image')
改成 var imageHelper = require('./iaas/image')