ibm-cloud

Your application is staging to create bluemix node-red app

混江龙づ霸主 提交于 2019-12-12 01:26:51
问题 I am a newbie for the bluemix. I would like to start the Node red app. However the app will never be created, instead the screen always show Your application is staging. I have try this a number of times and changed the server location from UK to USA. However it never works. 回答1: it is a known issue about a node.js module not building correctly. There is already a fix about the module, we are waiting for the npm repository to be updated. https://github.com/ibmdb/node-ibm_db/pull/44/commits

impossible to delete a container

风格不统一 提交于 2019-12-12 00:32:22
问题 I have created a BlueMix container, and I wanted to delete it. I thus went to the portal, and clicked on the right of the container, the menu, and then chose "delete container". The problem is : after that, the container is not deleted, it is still not marked as "active", but it is impossible to free its IP address, or the RAM used! It is quite disturbing, and at present I don't know what to do. 回答1: Using the ice command line tool (https://www.ng.bluemix.net/docs/containers/container_cli_ice

Deploying Ruby on Rails App (OpenConferenceWare) to IBM Bluemix

非 Y 不嫁゛ 提交于 2019-12-12 00:26:19
问题 I have been trying to push my 'openconferenceware' appl to bluemix. While, the application runs flawlessly on my local system, it doesnt get deployed on the Bluemix. Below is the log output. Writing config/database.yml to read from DATABASE_URL -----> Preparing app for Rails asset pipeline Running: rake assets:precompile rake aborted! NameError: uninitialized constant OpenConferenceWare /tmp/staged/app/config/initializers/01_open_conference_ware.rb:3:in `<top (required)>' /tmp/staged/app

Deploying .NET Application on Bluemix, connecting to external databases, Watson

送分小仙女□ 提交于 2019-12-11 23:38:16
问题 I have an application built on .NET Framework using MVC 5 and SQL Server 2008 R2 Enterprise Edition which I want to deploy on Bluemix. Does Bluemix Support .NET. If I deploy my .NET application on Bluemix, would it work? I have Virtual Servers hosting the application and data for my Application on a separate hosting provider. If I deploy some components of my application (built on Bluemix supported technologies such as Java/ php/ node.js/ DB2) on Bluemix, will I still be able to communicate

mobilefirst native ios keychain wrapper issue

半腔热情 提交于 2019-12-11 20:16:36
问题 I am working on a project for a native iOS app using xcode to develop the project, but including both MobileFirst Platform Foundation capabilities and mobile data capabilities from Bluemix. We are using a shared git repository on IBM DevOps services (jazzhub) to share project source code and work collaboratively on it. Most of the native apps I have built in the past have been on my own, so this is my first attempt to collaborate using git/xcode working together. All that is just context for

How do I create HMAC credentials for IBM Cloud Object Storage using the CLI?

吃可爱长大的小学妹 提交于 2019-12-11 17:36:47
问题 I am using the IBM Cloud CLI and tried to generate credentials for my cloud object storage service. However, the following command does not create HMAC credentials needed for using some S3 tools and APIs: ibmcloud resource service-key-create cos-hmac-cli Writer --instance-name myobjectstorage How can I create HMAC credentials using the command line interface? 回答1: The trick is to provide an additional parameter that tells the service to generate the HMAC part, too: ibmcloud resource service

How to programatically reconfigure Availability Monitoring in DevOps stage for Blue-Green deployment?

牧云@^-^@ 提交于 2019-12-11 17:30:46
问题 I'm using an IBM devops pipeline based on the Cloud Foundry template. The template gives you Blue-Green deployments. My stage deploy script looks like this: #!/bin/bash cat << EOF > ${WORKSPACE}/manifest.yml declared-services: my_cloudant: label: cloudantNoSQLDB plan: Lite my_messagehub: label: messagehub plan: standard my_autoscaling: label: Auto-Scaling plan: free my_availability_monitoring: label: AvailabilityMonitoring plan: Lite applications: - name: movie-recommend-demo host: movie

IBM Cloud COS: Using S3 API get-bucket-location returns bucket not found

倾然丶 夕夏残阳落幕 提交于 2019-12-11 17:08:38
问题 I'm using the S3 API for IBM Cloud COS and am getting unexpected bucket not found errors from get-bucket-location. My bucket exists in the us-south region and shows up the s3 ls command, but getting the region is failing. I'm using the java AWS api, but can reproduce it with the aws cli. [08:07] jwilliams:~ $ aws --profile ibm --endpoint-url https://s3-api.us-geo.objectstorage.softlayer.net s3api get-bucket-location --bucket s3-wzd-dv-integrationtest-so-1 An error occurred (NoSuchBucket) when

Web Action returns HTTP 200 response with empty body

99封情书 提交于 2019-12-11 16:42:45
问题 Having created an OpenWhisk Web Action from the CLI, invoking the action over the public Web Action URL always returns an empty response body. The HTTP status code returned (200) indicating a successful invocation. Regardless of the return value from the function, nothing is included in the empty response body. const fs = require('fs') const execFile = require('child_process').execFile function hello(params) { return new Promise((resolve, reject) => { fs.writeFileSync('test.js', params.code)

Connecting php server to DB2 from outside IBM Cloud

烂漫一生 提交于 2019-12-11 16:33:07
问题 I am following the process as described here: https://www.ibm.com/support/knowledgecenter/en/SSHRBY/com.ibm.swg.im.dashdb.doc/connecting/connect_connecting_php.html I have completed the instalation and I have even run the validation command in shell db2cli validate -dsn DashDB -connect -user bluadmin -passwd 'your_secret_password' see output below But still my www page crashes on the line $conn = odbc_connect( $conn_string, "", "" ); becasue it does not recognize the odbc_connect function.