|
Ubuntu Xenial stemcell and rootfs plans
Could we please, please not call it `cflinuxfs3`? A very common question I get is what is `cflinuxfs2` really? I then have to explain that it is basically Ubuntu Trusty. That invariably results in the
Could we please, please not call it `cflinuxfs3`? A very common question I get is what is `cflinuxfs2` really? I then have to explain that it is basically Ubuntu Trusty. That invariably results in the
|
By
Daniel Mikusa
· #4861
·
|
|
Unnaccounted memory in Java application running in Cloud Foundry
Try running `jcmd <pid> VM.native_memory summary` to get a full summary of the memory being used by the JVM. Looks like this. ``` $ jcmd 72082 VM.native_memory summary 72082: Native Memory Tracking: T
Try running `jcmd <pid> VM.native_memory summary` to get a full summary of the memory being used by the JVM. Looks like this. ``` $ jcmd 72082 VM.native_memory summary 72082: Native Memory Tracking: T
|
By
Daniel Mikusa
· #4837
·
|
|
restart APP launched by docker still need to access remote docker image?
Start running `cf logs` in a second terminal. The log output should show more details about what is happening while the app is starting. Hopefully that will show what is taking up the time. Dan
Start running `cf logs` in a second terminal. The log output should show more details about what is happening while the app is starting. Hopefully that will show what is taking up the time. Dan
|
By
Daniel Mikusa
· #4827
·
|
|
restart APP launched by docker still need to access remote docker image?
I believe that is the expected behavior. See the last bullet point here. https://docs.cloudfoundry.org/concepts/docker.html#caveats Dan
I believe that is the expected behavior. See the last bullet point here. https://docs.cloudfoundry.org/concepts/docker.html#caveats Dan
|
By
Daniel Mikusa
· #4822
·
|
|
CR Push failure
Don't be led astray here. With the DEA when an app crashes, you will pretty much always be told "failed to accept connection within health check timeout" (Diego is better and gives more helpful error
Don't be led astray here. With the DEA when an app crashes, you will pretty much always be told "failed to accept connection within health check timeout" (Diego is better and gives more helpful error
|
By
Daniel Mikusa
· #4823
·
|
|
CR Push failure
The problem is that your app is crashing. Fortunately the reason in this case is clear from the exit status. 127 means "command not found". This is a convention in Linux. http://tldp.org/LDP/abs/html/
The problem is that your app is crashing. Fortunately the reason in this case is clear from the exit status. 127 means "command not found". This is a convention in Linux. http://tldp.org/LDP/abs/html/
|
By
Daniel Mikusa
· #4821
·
|
|
How to install things on specfic APP container
You don't have root access in application containers. You could bundle the software into a custom build pack. Again, you can't install stuff with root so you have to manually extract the files somewhe
You don't have root access in application containers. You could bundle the software into a custom build pack. Again, you can't install stuff with root so you have to manually extract the files somewhe
|
By
Daniel Mikusa
· #4805
·
|
|
How to create/start an APP in quickest way
Correct. There's a couple ways you can create the target app. Push a dummy app or use the API directly (i.e. `cf curl` [1]). Once you create the target app, copy source will override whatever is in th
Correct. There's a couple ways you can create the target app. Push a dummy app or use the API directly (i.e. `cf curl` [1]). Once you create the target app, copy source will override whatever is in th
|
By
Daniel Mikusa
· #4790
·
|
|
How to create/start an APP in quickest way
Have you looked at `cf copy-source`? You can use that to copy one app to another. You could then change service bindings, environment variables and scale the copy of the app separately. I believe you
Have you looked at `cf copy-source`? You can use that to copy one app to another. You could then change service bindings, environment variables and scale the copy of the app separately. I believe you
|
By
Daniel Mikusa
· #4788
·
|
|
unable to push buildback and even CF-app command
wrote: The time stamp on the request and response are exactly 60 seconds apart. Do you have any timeouts that are set to 60 seconds? Perhaps on your load balancer? Dan
wrote: The time stamp on the request and response are exactly 60 seconds apart. Do you have any timeouts that are set to 60 seconds? Perhaps on your load balancer? Dan
|
By
Daniel Mikusa
· #4775
·
|
|
VCAP_APPLICATION in the V3 Cloud Foundry API
I know some of the build packs will look at application name and use that for configuration of some of the APM agents (NewRelic, AppDynamics, etc..). Ex: https://github.com/cloudfoundry/java-buildpack
I know some of the build packs will look at application name and use that for configuration of some of the APM agents (NewRelic, AppDynamics, etc..). Ex: https://github.com/cloudfoundry/java-buildpack
|
By
Daniel Mikusa
· #4765
·
|
|
What does status code 255 mean?
If possible add more logging or increase logging levels. Not sure what language / runtime you're using, but you might be able to add an exit hook or some code that is guaranteed to run before your app
If possible add more logging or increase logging levels. Not sure what language / runtime you're using, but you might be able to add an exit hook or some code that is guaranteed to run before your app
|
By
Daniel Mikusa
· #4758
·
|
|
My nodejs application can't work if the version nodejs buildpack >= v1.5.9
This isn't really a problem with the build pack. It's a problem with compiling one of the native modules that you are using ` dtrace-provider(a)0.2.8`. Not sure why that's failing. There's some info i
This isn't really a problem with the build pack. It's a problem with compiling one of the native modules that you are using ` dtrace-provider(a)0.2.8`. Not sure why that's failing. There's some info i
|
By
Daniel Mikusa
· #4756
·
|
|
What does status code 255 mean?
It is the exit status of your application. In other words, your app exited and returned this number. http://tldp.org/LDP/abs/html/exit-status.html It may be an application specific number or it could
It is the exit status of your application. In other words, your app exited and returned this number. http://tldp.org/LDP/abs/html/exit-status.html It may be an application specific number or it could
|
By
Daniel Mikusa
· #4755
·
|
|
Intended UAA-specific user identity fields in JWT access token ?
wrote: How is this comment related to this email thread or helpful? Dan
wrote: How is this comment related to this email thread or helpful? Dan
|
By
Daniel Mikusa
· #4728
·
|
|
HTTP request status text is changed
Are you sure the request is actually making it to your app? Requests that come into CF go through a load balancer and the gorouters before they hit your app. ie. browser -> your LB -> gorouters -> app
Are you sure the request is actually making it to your app? Requests that come into CF go through a load balancer and the gorouters before they hit your app. ie. browser -> your LB -> gorouters -> app
|
By
Daniel Mikusa
· #4698
·
|
|
Maven: Resolve Dependencies on Platform?
It's the cf cli that does this. It looks through your JAR / WAR or push path for files and then uses the resource matching endpoint to ask the server what it needs to upload. Then it uploads just thos
It's the cf cli that does this. It looks through your JAR / WAR or push path for files and then uses the resource matching endpoint to ask the server what it needs to upload. Then it uploads just thos
|
By
Daniel Mikusa
· #4656
·
|
|
CF Job Failure
Does the app actually push and get started? i.e. if you run `cf apps` after you get this message is the app up and running? Also, do you see similar issues when you push with `cf push`? Take a look at
Does the app actually push and get started? i.e. if you run `cf apps` after you get this message is the app up and running? Also, do you see similar issues when you push with `cf push`? Take a look at
|
By
Daniel Mikusa
· #4643
·
|
|
Maven: Resolve Dependencies on Platform?
As an experiment, I created a build pack that would do this. It hasn't been updated in a while, I don't plan to update it and it was never very solid to begin with. It was more to just see if I could
As an experiment, I created a build pack that would do this. It hasn't been updated in a while, I don't plan to update it and it was never very solid to begin with. It was more to just see if I could
|
By
Daniel Mikusa
· #4642
·
|
|
CF Auto-scaling with an external application
wrote: There's two parts to this problem: 1.) You need to get metrics from the platform. I don't think (although this could have changed, since it's being rewritten at the moment) that cf-java-client
wrote: There's two parts to this problem: 1.) You need to get metrics from the platform. I don't think (although this could have changed, since it's being rewritten at the moment) that cf-java-client
|
By
Daniel Mikusa
· #4619
·
|