I have some cloud foundry nodejs apps in IBM Cloud (Bluemix), and facing some issues with temp folders. It'd be easier if I can access directly to app folders (like my .tmp) to debug what's saving there. I can only think in SSH, but I prefer a visual tool or connected service. Any idea?
Asked
Active
Viewed 1,363 times
1 Answers
4
You can use graphical tools to browse the files by utilizing scp or sftp. I use FileZilla to browser the files. Instructions for accessing the files are similar to all Cloud Foundry providers, including IBM Cloud:
- I logged in to IBM Cloud using the CLI:
ibmcloud login
- Next, set the org and space:
ibmcloud target --cf
- Obtain the GUID for the app:
ibmcloud cf app YOURAPP --guid
- Look for the ssh endpoint:
ibmcloud cf curl /v2/info
- Issue a onetime password for ssh access:
ibmcloud cf ssh-code
With that, use a username like cf:theGUIDfrom3/0 (0 could be another number depending on how many instances you have) and the onetime password to log in. The host is the one listed as app_ssh_endpoint at the shown port. You likely need to prefix it with the protocol, e.g., sftp://.

data_henrik
- 16,724
- 2
- 28
- 49