无法将 Sample Shiny App 推送到 Bluemix
Unable to push Sample Shiny App to Bluemix
无法将示例应用程序推送到 Bluemix
嗨,
我正在尝试使用 Bluemix 试用 Shiny 的示例教程 -http://www.ibm.com/developerworks/library/ba-rtwitter-app/index.html
在经历了多个问题之后,我发现应用程序没有监听 Bluemix 动态分配的端口 -错误:"Failed to accept connection within health check timeout..."
既然应用程序需要 cf-buildpack-r,假设环境变量也由同一个包处理是否公平?
在哪里添加以下代码段?
var port=process.env.VCAP_APP_PORT || 1337; http.createServer(app).listen(port), function(){ console.log('Express server listening on port ' + port); });
因为不存在其他可见的 js 代码。我不确定我是否遗漏了什么。
由于没有可重现的示例来调试此类错误,如何进行必要的修改?
命令
cf push EdusasApp -b https://github.com/aruizga7/cf-buildpack-r --no-route
我还创建了一个包含 :
的本地 manifest.yml
applications: - host: Edusas disk: 1024M name: Edusas buildpack: https:..../cf-buildpack-r path: . domain: ng.bluemix.net mem: 512M instances:
请帮忙
检查文档中引用的项目,http://hub.jazz.net/project/crackmanworld/TwitterBluemix/overview. In the project there is a file, http://hub.jazz.net/project/crackmanworld/TwitterBluemix/…包含服务器启动。当服务器启动时,它会绑定到环境变量 VCAP_APP_PORT 中定义的端口,如果需要,您也可以使用 VCAP_PORT。
无法将示例应用程序推送到 Bluemix
嗨,
我正在尝试使用 Bluemix 试用 Shiny 的示例教程 -http://www.ibm.com/developerworks/library/ba-rtwitter-app/index.html
在经历了多个问题之后,我发现应用程序没有监听 Bluemix 动态分配的端口 -错误:"Failed to accept connection within health check timeout..."
既然应用程序需要 cf-buildpack-r,假设环境变量也由同一个包处理是否公平?
在哪里添加以下代码段?
var port=process.env.VCAP_APP_PORT || 1337; http.createServer(app).listen(port), function(){ console.log('Express server listening on port ' + port); });
因为不存在其他可见的 js 代码。我不确定我是否遗漏了什么。
由于没有可重现的示例来调试此类错误,如何进行必要的修改?
命令
cf push EdusasApp -b https://github.com/aruizga7/cf-buildpack-r --no-route
我还创建了一个包含 :
的本地 manifest.ymlapplications: - host: Edusas disk: 1024M name: Edusas buildpack: https:..../cf-buildpack-r path: . domain: ng.bluemix.net mem: 512M instances:
请帮忙
检查文档中引用的项目,http://hub.jazz.net/project/crackmanworld/TwitterBluemix/overview. In the project there is a file, http://hub.jazz.net/project/crackmanworld/TwitterBluemix/…包含服务器启动。当服务器启动时,它会绑定到环境变量 VCAP_APP_PORT 中定义的端口,如果需要,您也可以使用 VCAP_PORT。