ibm-cloud-tools

How to access files in container in Object Storage Service in Bluemix?

谁说我不能喝 提交于 2019-12-23 05:10:06
问题 How can I access files by url in Bluemix Object Storage? Is there a way to make the container public? How can I access the file in Object Storage just by typing the url in the browser? How can I retrieve an image by url to display it in html? 回答1: You can create a temporary URLs using the swift command line to provide public access to your Object Storage files. First you have to set the swift CLI, you can find steps on this link. After you have swift cli configured for your environment you

Bluemix build pipeline set node and npm version

六月ゝ 毕业季﹏ 提交于 2019-12-20 03:07:17
问题 I want to deploy an angular 2 app on bluemix. The code is located at github and i want to deploy my app when i push something. So i created a pipeline. First the build pipeline: to build the angular app i need angularCLI, so i want to install it. Unfortunately the default node version is 4.2 but the cli needs at least 6.9. Here is my build-shell-command: #!/bin/bash # The default Node.js version is 0.10.40 # To use Node.js 0.12.7, uncomment the following line: #export PATH=/opt/IBM/node-v0.12

IBM Eclipse Tools for Bluemix

旧街凉风 提交于 2019-12-12 06:28:32
问题 new to ibm bluemix. Steps to be followed to develop a application on eclipse and to depoy using IBM Eclipse Tools for Bluemix and cloud foundry as well. 回答1: You could find all information you may need for your question in the Bluemix Documentation https://console.ng.bluemix.net/docs/ On the following URL you could find a "Step by step" guide using Bluemix tool: https://console.ng.bluemix.net/docs/manageapps/eclipsetools/eclipsetools.html Instead on the following URL you could find a "Step by

Not able to get my application logs using “cf logs my-cool-app” command (CF version 6.27)

一曲冷凌霜 提交于 2019-12-12 05:25:30
问题 I see an issue just like this from a few years ago, but I am facing the same problem. I am using cf version 6.27.0+d26b32dcc.2017-06-08 and bx version 0.5.4+ae22935-2017-05-18T06:24:28+00:00 When I issue bx app logs <myappname> , I get this error Loggregator endpoint missing from config file If I issue cf logs <myappname> , it works like a charm. Can anyone provide guidance on this? thank you 回答1: bx app logs is using embedded cf cli, while that embedded version cf cli is too old. A

Error pushing changes to cloud foundry

有些话、适合烂在心里 提交于 2019-12-10 09:31:14
问题 from my local host, I connected to blue mix with cf api https://api.ng.bluemix.net I logged in and then I pushed the changes with cf push However, in the console, Uploading MY_PROJECT... Uploading app files from: /Users/MyName/Documents/MY_PROJECT Uploading 437.7K, 386 files Done uploading FAILED Error processing app files: Error uploading application. The resource file mode is invalid: File mode '0444' is invalid. (venv) My-iMac:MY_PROJECT MyName$ How do I trouble shoot this? 回答1: According

Bluemix remote debugging session not starting

狂风中的少年 提交于 2019-12-02 12:14:32
问题 I have followed the Bluemix/Eclipse instructions to setup the Liberty servers in eclipse. Able to do everything with the Bluemix/eclipse tools except for remote debugging. Receiving the following exceptions/errors when I select the "Enable Debug Mode" on my application under the servers. Tried a longer Debug timeout but that has not helped. Any pointers? TIA [2015-11-30 07:16:56.832] bluemixMgmgClient - ???? [pool-1-thread-1] .... ERROR --- ClientProxyImpl: Cannot create the websocket

Bluemix remote debugging session not starting

天涯浪子 提交于 2019-12-02 05:34:53
I have followed the Bluemix/Eclipse instructions to setup the Liberty servers in eclipse. Able to do everything with the Bluemix/eclipse tools except for remote debugging. Receiving the following exceptions/errors when I select the "Enable Debug Mode" on my application under the servers. Tried a longer Debug timeout but that has not helped. Any pointers? TIA [2015-11-30 07:16:56.832] bluemixMgmgClient - ???? [pool-1-thread-1] .... ERROR --- ClientProxyImpl: Cannot create the websocket connections for JavaMemcachedApp com.ibm.ws.cloudoe.management.client.exception.ApplicationManagementException

Bluemix build pipeline set node and npm version

旧巷老猫 提交于 2019-12-02 01:52:01
I want to deploy an angular 2 app on bluemix. The code is located at github and i want to deploy my app when i push something. So i created a pipeline. First the build pipeline: to build the angular app i need angularCLI, so i want to install it. Unfortunately the default node version is 4.2 but the cli needs at least 6.9. Here is my build-shell-command: #!/bin/bash # The default Node.js version is 0.10.40 # To use Node.js 0.12.7, uncomment the following line: #export PATH=/opt/IBM/node-v0.12/bin:$PATH # To use Node.js 4.2.2, uncomment the following line: export PATH=/opt/IBM/node-v6.9/bin: