ERR_CONNECTION_TIMED_OUT


Amit Kumar Gupta
 

Upcoming support for TCP routing (not just HTTP routing) will allow you to
run a container that serves HTTPS traffic.

Currently the wso2 product ships with an untrusted self-signed cert. How
do you plan on using wso2? Will it be exposed to external consumers, or is
it just something internal that other applications need to talk to? If
exposed to external consumers, will you want to configure it with a real
trusted cert? What about DNS, would it be exposed under a proper DNS
hostname (instead of clients requesting a raw IP)? Do you plan on being
able to horizontally scale your wso2 application, i.e. run more than one
instance of the server to share traffic load and provide fault tolerance?

Cheers,
Amit

On Thu, Mar 3, 2016 at 8:39 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi Eric,

Thank you very much for looking into this matter. Actually I was not well
and I couldn't reply you. I am really really grateful for you and Amit for
looking into this matter very generously.

Actually, your description explains me well. The problem here is that WSO2
products use HTTPS, and there's no way to change that behavior because that
will be affecting the overall company process.

WSO2 products are based on Carbon platform and they are run with HTTPS
mode. [1] is a basic WSO2 product repo which runs the WSO2 ESB.
[1] https://github.com/wso2/product-esb

So, can you propose me any other way to deploy WSO2 products in Cloud
Foundry, if I'm unable to handle with Docker images. As a company, we are
now in the strategy of trying out our products in different PaaSes. So your
support is highly appreciated.

Best regards,
Nanduni.


Nanduni Nimalsiri
 

Hi Eric,

Thank you very much for looking into this matter. Actually I was not well and I couldn't reply you. I am really really grateful for you and Amit for looking into this matter very generously.

Actually, your description explains me well. The problem here is that WSO2 products use HTTPS, and there's no way to change that behavior because that will be affecting the overall company process.

WSO2 products are based on Carbon platform and they are run with HTTPS mode. [1] is a basic WSO2 product repo which runs the WSO2 ESB.
[1] https://github.com/wso2/product-esb

So, can you propose me any other way to deploy WSO2 products in Cloud Foundry, if I'm unable to handle with Docker images. As a company, we are now in the strategy of trying out our products in different PaaSes. So your support is highly appreciated.

Best regards,
Nanduni.


Nanduni Nimalsiri
 

Hi Amit,

Thank you for devoting time into this matter. I was not well and I couldn't reply you. Thank you very much for looking into this matter.

Best regards,
Nanduni.


Eric Malm <emalm@...>
 

Hi, Amit and Nanduni,

Thanks for looking into this. Since you reported this behavior, I've also
been investigating what's going on with this image when pushed as a CF app,
using the Diego team's 'ketchup' environment. With the 'isim/wso2dss'
image, which exposes ports 8243, 8280, 9443, and 9763, those ports are
indeed exposed on the garden-linux container, and the PORT environment
variable is set to the lowest value, 8243. But the HTTP routing data refers
to port 8080: inspecting the Diego DesiredLRP generated for the app, the
'cf-router' field on the routes map is

[{"port":8080,"hostnames":["dss.ketchup.cf-app.com"]}]

I'll check with Shannon about the current state of support for multiple
ports in CF, which is in flux at the moment, and generate a story to fix
this behavior if necessary.


The 9443-only variant at 'nanduni/wso2esb-nin' is better behaved, as the
DesiredLRP for its app both exposes port 9443 and sets that port in the
cf-router data:

[{"port":9443,"hostnames":["dss-n.ketchup.cf-app.com"]}]

The gorouter's routing-table endpoint also shows that this domain has the
correct external IP and port registered as a backend for the route.
Unfortunately, the app expects only HTTPS traffic on this port, which is
incompatible with the operation of the gorouter. The gorouter expects
either SSL to be terminated at the load-balancer in front of its instances,
or it can also terminate it itself. Either way, traffic from the gorouter
to the container itself with be HTTP, with headers such as
"X-Forwarded-Proto" added to the request.


So let's see if 9763 is in fact the correct port to expose for this app to
run on CF load-balanced by the gorouters. Fortunately, the 'dss' app with
port 9763 exposed is still running, so we can send requests to it from
inside the deployment. Looking up its ActualLRP data, the instance on a
Diego cell with IP 10.10.5.66, and the corresponding external port
is 63327. Running

curl -v -H "Host: dss.ketchup.cf-app.com" -H "X-Forwarded-Proto: https"
http://10.10.5.66:63327

yields a 302 Found response with a redirect to
http://dss.ketchup.cf-app.com/carbon. The domain lookup won't work, but
appending the path from the redirect to the first curl gives a new command
to try,

curl -v -H "Host: dss.ketchup.cf-app.com" -H "X-Forwarded-Proto: https"
http://10.10.5.66:63327/carbon

Running this yields another 302 Found response with a redirect to
https://10.254.0.46:9443/carbon/. The IP in that URL is the IP of the
container's internal network interface, and the 9443 is that HTTPS port
from earlier. In any case, it's in private IP space, so a client on the
public internet will be unable to follow that redirect. So this app itself,
at least by default, isn't set up to handle the SSL-terminated traffic
coming from the gorouter (or any other load-balancer that terminates SSL).
Supplying other 'X-Forwarded-*' headers also didn't alter this behavior.

Nanduni, since you have some familiarity with this app, do you know if
there's a way to get it to accept HTTP traffic on that 9763 port, perhaps
via certain environment variables? If so, you could instead re-build the
Docker image to expose only that 9763 port, publish the image and re-push
it as a CF app, and then set those environment variables on the CF app
before you start it.

Thanks,
Eric, CF Runtime Diego PM

On Wed, Mar 2, 2016 at 9:41 PM, Amit Gupta <agupta(a)pivotal.io> wrote:

Hey all,

I thought what I found in the diego docs is that it will route traffic to
the lowest port exposed in the Dockerfile. I found Nanduni's image on
DockerHub and tried it myself:

cf push dss -o nanduni/wso2esb-nin -k 2048M -m 2G -u none

Indeed 9443 is the only exposed port, so I figured it should work. I can
"cf ssh dss" and then "wget --no-check-certificate
https://10.254.0.2:9443/" and it downloads index.html just fine. Not
sure if the issue is that the server is bound to the 10.254.0.2 host rather
than 0.0.0.0, or whether it's serving HTTPS whereas in the CF context, SSL
is terminated upstream at the load balancer and the gorouter expects to
just proxy HTTP traffic to the applications in the backend. Or maybe it
does have something to do with port 8080?

Amit

On Wed, Mar 2, 2016 at 7:31 PM, Gwenn Etourneau <getourneau(a)pivotal.io>
wrote:

HI,
The console should start on port 8080 but it seems the console start on
9443 https://10.254.0.2:9443/carbon/
<https://10.254.0.2:9443/carbon/2016-03-03T08:44:09.09+0530>

On Thu, Mar 3, 2016 at 12:25 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi Amit,

Sorry for troubling you. As you said, I edited the docker file and did
as you instructed. Still the management console does not come up in the
browser. It displays the page ERR_CONNECTION_TIMED_OUT. The final lines of
the logs are as follows.

2016-03-03T08:41:42.30+0530 [APP/0] OUT [2016-03-03 03:11:42,304]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 36 sec
2016-03-03T08:41:42.74+0530 [APP/0] OUT [2016-03-03 03:11:42,744]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-03T08:44:09.09+0530
<https://10.254.0.2:9443/carbon/2016-03-03T08:44:09.09+0530> [RTR/0]
OUT test.local.micropcf.io - [03/03/2016:03:14:08 +0000] "GET /
HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:8c5c7ec2-1cf7-4130-7c16-4523ac5fe0fe
response_time:0.538979624 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec
2016-03-03T08:44:09.61+0530 [RTR/0] OUT test.local.micropcf.io -
[03/03/2016:03:14:09 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://test.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:9cb06104-dc03-47a7-4558-054ac311b10e
response_time:0.013914801 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec

Can you propose me some remedy. Thank you.

Best regards,
Nanduni.


Amit Kumar Gupta
 

Hey all,

I thought what I found in the diego docs is that it will route traffic to
the lowest port exposed in the Dockerfile. I found Nanduni's image on
DockerHub and tried it myself:

cf push dss -o nanduni/wso2esb-nin -k 2048M -m 2G -u none

Indeed 9443 is the only exposed port, so I figured it should work. I can
"cf ssh dss" and then "wget --no-check-certificate https://10.254.0.2:9443/"
and it downloads index.html just fine. Not sure if the issue is that the
server is bound to the 10.254.0.2 host rather than 0.0.0.0, or whether it's
serving HTTPS whereas in the CF context, SSL is terminated upstream at the
load balancer and the gorouter expects to just proxy HTTP traffic to the
applications in the backend. Or maybe it does have something to do with
port 8080?

Amit

On Wed, Mar 2, 2016 at 7:31 PM, Gwenn Etourneau <getourneau(a)pivotal.io>
wrote:

HI,
The console should start on port 8080 but it seems the console start on
9443 https://10.254.0.2:9443/carbon/
<https://10.254.0.2:9443/carbon/2016-03-03T08:44:09.09+0530>

On Thu, Mar 3, 2016 at 12:25 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi Amit,

Sorry for troubling you. As you said, I edited the docker file and did as
you instructed. Still the management console does not come up in the
browser. It displays the page ERR_CONNECTION_TIMED_OUT. The final lines of
the logs are as follows.

2016-03-03T08:41:42.30+0530 [APP/0] OUT [2016-03-03 03:11:42,304]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 36 sec
2016-03-03T08:41:42.74+0530 [APP/0] OUT [2016-03-03 03:11:42,744]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-03T08:44:09.09+0530
<https://10.254.0.2:9443/carbon/2016-03-03T08:44:09.09+0530> [RTR/0]
OUT test.local.micropcf.io - [03/03/2016:03:14:08 +0000] "GET /
HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:8c5c7ec2-1cf7-4130-7c16-4523ac5fe0fe
response_time:0.538979624 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec
2016-03-03T08:44:09.61+0530 [RTR/0] OUT test.local.micropcf.io -
[03/03/2016:03:14:09 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://test.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:9cb06104-dc03-47a7-4558-054ac311b10e
response_time:0.013914801 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec

Can you propose me some remedy. Thank you.

Best regards,
Nanduni.


Gwenn Etourneau
 

HI,
The console should start on port 8080 but it seems the console start on
9443 https://10.254.0.2:9443/carbon/
<https://10.254.0.2:9443/carbon/2016-03-03T08:44:09.09+0530>

On Thu, Mar 3, 2016 at 12:25 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi Amit,

Sorry for troubling you. As you said, I edited the docker file and did as
you instructed. Still the management console does not come up in the
browser. It displays the page ERR_CONNECTION_TIMED_OUT. The final lines of
the logs are as follows.

2016-03-03T08:41:42.30+0530 [APP/0] OUT [2016-03-03 03:11:42,304]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 36 sec
2016-03-03T08:41:42.74+0530 [APP/0] OUT [2016-03-03 03:11:42,744]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-03T08:44:09.09+0530 [RTR/0] OUT test.local.micropcf.io -
[03/03/2016:03:14:08 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:47911
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:8c5c7ec2-1cf7-4130-7c16-4523ac5fe0fe
response_time:0.538979624 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec
2016-03-03T08:44:09.61+0530 [RTR/0] OUT test.local.micropcf.io -
[03/03/2016:03:14:09 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://test.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:9cb06104-dc03-47a7-4558-054ac311b10e
response_time:0.013914801 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec

Can you propose me some remedy. Thank you.

Best regards,
Nanduni.


Nanduni Nimalsiri
 

Hi Amit,

Sorry for troubling you. As you said, I edited the docker file and did as you instructed. Still the management console does not come up in the browser. It displays the page ERR_CONNECTION_TIMED_OUT. The final lines of the logs are as follows.

2016-03-03T08:41:42.30+0530 [APP/0] OUT [2016-03-03 03:11:42,304] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 36 sec
2016-03-03T08:41:42.74+0530 [APP/0] OUT [2016-03-03 03:11:42,744] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-03T08:44:09.09+0530 [RTR/0] OUT test.local.micropcf.io - [03/03/2016:03:14:08 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:8c5c7ec2-1cf7-4130-7c16-4523ac5fe0fe response_time:0.538979624 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec
2016-03-03T08:44:09.61+0530 [RTR/0] OUT test.local.micropcf.io - [03/03/2016:03:14:09 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://test.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:47911 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:9cb06104-dc03-47a7-4558-054ac311b10e response_time:0.013914801 app_id:6c9792e2-efa5-4a80-9364-27e99c58bdec

Can you propose me some remedy. Thank you.

Best regards,
Nanduni.


Nanduni Nimalsiri
 

Hi Amit,

Thank you for helping at all difficult circumstances. I will follow your instructions and report once done or if I have any problem.

Best regards,
Nanduni.


Amit Kumar Gupta
 

I don't think setting the PORT environment variable will help. I think the
key bit of info is this:

*The CC will also run the start command as the user specified in the Docker
image, and will currently tell Diego and the Gorouter to route traffic to
the lowest-numbered port exposed in the Docker image. (We expect CC to
support routing to multiple ports soon.) *[1
<https://github.com/cloudfoundry-incubator/diego-design-notes/blob/master/docker-support.md#how-cc-tells-diego-to-launch-docker-images>
]

The problem is to access the server, you want to hit it on port 9443
according to the Usage described on Docker Hub [2
<https://hub.docker.com/r/isim/wso2dss/>]. However it exposes other ports
lower than 9443 according to the Dockerfile [3
<https://hub.docker.com/r/isim/wso2dss/~/dockerfile/>], and so gorouter is
routing traffic to an undesired port. What you could do is take the
Dockerfile, expose only 9443, build the image and push it to your own repo,
and then cf push the app with "-o" pointed at your repo. In the future we
will support exposing multiple ports, but for now doing this might help
unblock you.

Best,
Amit

[1]
https://github.com/cloudfoundry-incubator/diego-design-notes/blob/master/docker-support.md#how-cc-tells-diego-to-launch-docker-images
[2] https://hub.docker.com/r/isim/wso2dss/
[3] https://hub.docker.com/r/isim/wso2dss/~/dockerfile/

On Tue, Mar 1, 2016 at 10:35 PM, Gwenn Etourneau <getourneau(a)pivotal.io>
wrote:

It seems you are missing most of the basic CF architecture.
Maybe you should understand how the routing layer is working in CF.


- http://docs.cloudfoundry.org/
- http://docs.cloudfoundry.org/concepts/architecture/


Thanks

On Wed, Mar 2, 2016 at 3:09 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi Gwenn,

I set the PORT environment variable to 8080. Now there are no errors in
the log. But the error ERR_CONNECTION_TIMED_OUT in the browser still pops
up. Here are the logs again.

2016-03-02T09:37:04.25+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss", "diego"=>true,
"docker_image"=>"isim/wso2dss"})
2016-03-02T09:37:04.48+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-02T09:37:04.49+0530 [CELL/0] OUT Exit status 0
2016-03-02T09:37:04.69+0530 [APP/0] OUT Exit status 255
2016-03-02T09:37:05.50+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-02T09:37:05.52+0530 [CELL/0] OUT Creating container
2016-03-02T09:37:13.30+0530 [CELL/0] OUT Successfully created
container
2016-03-02T09:37:13.51+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T09:37:13.51+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,907]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T09:37:20.14+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T09:37:20.18+0530 [APP/0] OUT [2016-03-02 04:07:20,183]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T09:37:24.12+0530 [APP/0] OUT [2016-03-02 04:07:24,119]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 244ms
2016-03-02T09:37:24.77+0530 [APP/0] OUT [2016-03-02 04:07:24,774]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T09:37:25.88+0530 [APP/0] OUT [2016-03-02 04:07:25,888]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-02T09:37:38.12+0530 [APP/0] OUT [2016-03-02 04:07:38,124]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:42.92+0530 [APP/0] OUT [2016-03-02 04:07:42,925]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T09:37:43.08+0530 [APP/0] OUT [2016-03-02 04:07:43,083]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-02T09:37:43.12+0530 [APP/0] OUT [2016-03-02 04:07:43,124]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-02T09:37:44.16+0530 [APP/0] OUT [2016-03-02 04:07:44,160]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-02T09:37:44.19+0530 [APP/0] OUT [2016-03-02 04:07:44,191]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-02T09:37:44.36+0530 [APP/0] OUT [2016-03-02 04:07:44,367]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T09:37:44.52+0530 [APP/0] OUT [2016-03-02 04:07:44,527]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T09:37:45.01+0530 [APP/0] OUT [2016-03-02 04:07:45,013]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T09:37:45.04+0530 [APP/0] OUT [2016-03-02 04:07:45,039]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.55+0530 [APP/0] OUT [2016-03-02 04:07:46,552]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.78+0530 [APP/0] OUT [2016-03-02 04:07:46,781]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-02T09:37:47.44+0530 [APP/0] OUT [2016-03-02 04:07:47,443]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,542]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,546]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 33 sec
2016-03-02T09:37:48.13+0530 [APP/0] OUT [2016-03-02 04:07:48,134]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-02T09:38:30.50+0530
<https://10.254.0.2:9443/carbon/2016-03-02T09:38:30.50+0530> [RTR/0]
OUT dss.local.micropcf.io - [02/03/2016:04:08:30 +0000] "GET /
HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:399c4ad1-9cb4-4591-7bce-9e094e83601f
response_time:0.007223831 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T09:38:30.87+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:08:30 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:3e4248d6-b7f7-43eb-7a4d-5926abd62759
response_time:0.004343669 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.11+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:922e9ff5-81d8-48d0-5013-8a6bd34f00de
response_time:0.010612915 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.66+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:95a26195-3e36-49ee-4096-5101906d994c
response_time:0.016394886 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.00+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:34 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:5c00d993-ac84-4a0c-5d73-fe0343f6244e
response_time:0.006500482 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.37+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:35 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:a7fbf275-28bf-4c97-5602-98c35f5cf573
response_time:0.009845242 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:50.81+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:50 +0000] "GET /10.254.0.2:9443/carbon/ HTTP/1.1" 502
0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:6050d8ef-9bbe-4d30-492c-89bb91296d4b
response_time:0.011323439 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:51.17+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:51 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/10.254.0.2:9443/carbon/" "Mozilla/5.0 (X11;
Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116
Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-"
x_forwarded_proto:"-" vcap_request_id:c2df5b70-46d5-4f9b-498f-5075181fceb7
response_time:0.005438891 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T11:31:11.77+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"environment_json"=>"PRIVATE DATA
HIDDEN"})
2016-03-02T11:31:19.71+0530 [STG/0] OUT Creating container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Successfully created
container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Staging...
2016-03-02T11:31:20.75+0530 [STG/0] OUT Staging process started ...
2016-03-02T11:31:24.55+0530 [CELL/0] OUT Exit status 0
2016-03-02T11:31:24.74+0530 [APP/0] OUT Exit status 255
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging process finished
2016-03-02T11:31:26.05+0530 [STG/0] OUT Exit status 0
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging Complete
2016-03-02T11:31:26.72+0530 [CELL/0] OUT Creating container
2016-03-02T11:31:33.97+0530 [CELL/0] OUT Successfully created
container
2016-03-02T11:31:35.45+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T11:31:35.45+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,520]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,859]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T11:31:50.91+0530 [APP/0] OUT [2016-03-02 06:01:50,911]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T11:31:56.15+0530 [APP/0] OUT [2016-03-02 06:01:56,151]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 210ms
2016-03-02T11:31:56.79+0530 [APP/0] OUT [2016-03-02 06:01:56,789]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T11:31:58.17+0530 [APP/0] OUT [2016-03-02 06:01:58,177]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
nanduni(a)nanduni-TECRA-M11:~/micro-cf/micropcf-v0.6.0$ cf logs dss
--recent
Connected, dumping recent logs for app dss in org micropcf-org / space
micropcf-space as admin...

2016-03-02T09:37:04.48+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-02T09:37:04.49+0530 [CELL/0] OUT Exit status 0
2016-03-02T09:37:04.69+0530 [APP/0] OUT Exit status 255
2016-03-02T09:37:05.50+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-02T09:37:05.52+0530 [CELL/0] OUT Creating container
2016-03-02T09:37:13.30+0530 [CELL/0] OUT Successfully created
container
2016-03-02T09:37:13.51+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T09:37:13.51+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,907]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T09:37:20.14+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T09:37:20.18+0530 [APP/0] OUT [2016-03-02 04:07:20,183]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T09:37:24.12+0530 [APP/0] OUT [2016-03-02 04:07:24,119]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 244ms
2016-03-02T09:37:24.77+0530 [APP/0] OUT [2016-03-02 04:07:24,774]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T09:37:25.88+0530 [APP/0] OUT [2016-03-02 04:07:25,888]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-02T09:37:38.12+0530 [APP/0] OUT [2016-03-02 04:07:38,124]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:42.92+0530 [APP/0] OUT [2016-03-02 04:07:42,925]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T09:37:43.08+0530 [APP/0] OUT [2016-03-02 04:07:43,083]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-02T09:37:43.12+0530 [APP/0] OUT [2016-03-02 04:07:43,124]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-02T09:37:44.16+0530 [APP/0] OUT [2016-03-02 04:07:44,160]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-02T09:37:44.19+0530 [APP/0] OUT [2016-03-02 04:07:44,191]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-02T09:37:44.36+0530 [APP/0] OUT [2016-03-02 04:07:44,367]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T09:37:44.52+0530 [APP/0] OUT [2016-03-02 04:07:44,527]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T09:37:45.01+0530 [APP/0] OUT [2016-03-02 04:07:45,013]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T09:37:45.04+0530 [APP/0] OUT [2016-03-02 04:07:45,039]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.55+0530 [APP/0] OUT [2016-03-02 04:07:46,552]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.78+0530 [APP/0] OUT [2016-03-02 04:07:46,781]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-02T09:37:47.44+0530 [APP/0] OUT [2016-03-02 04:07:47,443]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,542]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,546]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 33 sec
2016-03-02T09:37:48.13+0530 [APP/0] OUT [2016-03-02 04:07:48,134]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-02T09:38:30.50+0530
<https://10.254.0.2:9443/carbon/2016-03-02T09:38:30.50+0530> [RTR/0]
OUT dss.local.micropcf.io - [02/03/2016:04:08:30 +0000] "GET /
HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:399c4ad1-9cb4-4591-7bce-9e094e83601f
response_time:0.007223831 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T09:38:30.87+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:08:30 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:3e4248d6-b7f7-43eb-7a4d-5926abd62759
response_time:0.004343669 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.11+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:922e9ff5-81d8-48d0-5013-8a6bd34f00de
response_time:0.010612915 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.66+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:95a26195-3e36-49ee-4096-5101906d994c
response_time:0.016394886 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.00+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:34 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:5c00d993-ac84-4a0c-5d73-fe0343f6244e
response_time:0.006500482 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.37+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:35 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:a7fbf275-28bf-4c97-5602-98c35f5cf573
response_time:0.009845242 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:50.81+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:50 +0000] "GET /10.254.0.2:9443/carbon/ HTTP/1.1" 502
0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:6050d8ef-9bbe-4d30-492c-89bb91296d4b
response_time:0.011323439 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:51.17+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:51 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/10.254.0.2:9443/carbon/" "Mozilla/5.0 (X11;
Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116
Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-"
x_forwarded_proto:"-" vcap_request_id:c2df5b70-46d5-4f9b-498f-5075181fceb7
response_time:0.005438891 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T11:31:11.77+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"environment_json"=>"PRIVATE DATA
HIDDEN"})
2016-03-02T11:31:19.71+0530 [STG/0] OUT Creating container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Successfully created
container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Staging...
2016-03-02T11:31:20.75+0530 [STG/0] OUT Staging process started ...
2016-03-02T11:31:24.55+0530 [CELL/0] OUT Exit status 0
2016-03-02T11:31:24.74+0530 [APP/0] OUT Exit status 255
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging process finished
2016-03-02T11:31:26.05+0530 [STG/0] OUT Exit status 0
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging Complete
2016-03-02T11:31:26.72+0530 [CELL/0] OUT Creating container
2016-03-02T11:31:33.97+0530 [CELL/0] OUT Successfully created
container
2016-03-02T11:31:35.45+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T11:31:35.45+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,520]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,859]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T11:31:50.91+0530 [APP/0] OUT [2016-03-02 06:01:50,911]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T11:31:56.15+0530 [APP/0] OUT [2016-03-02 06:01:56,151]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 210ms
2016-03-02T11:31:56.79+0530 [APP/0] OUT [2016-03-02 06:01:56,789]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T11:31:58.17+0530 [APP/0] OUT [2016-03-02 06:01:58,177]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-02T11:32:15.41+0530 [APP/0] OUT [2016-03-02 06:02:15,416]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-02T11:32:16.86+0530 [APP/0] OUT [2016-03-02 06:02:16,867]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T11:32:16.87+0530 [APP/0] OUT [2016-03-02 06:02:16,868]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T11:32:21.05+0530 [APP/0] OUT [2016-03-02 06:02:21,056]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T11:32:21.20+0530 [APP/0] OUT [2016-03-02 06:02:21,202]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-02T11:32:21.23+0530 [APP/0] OUT [2016-03-02 06:02:21,236]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-02T11:32:22.44+0530 [APP/0] OUT [2016-03-02 06:02:22,439]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-02T11:32:22.44+0530 [APP/0] OUT [2016-03-02 06:02:22,440]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-02T11:32:22.47+0530 [APP/0] OUT [2016-03-02 06:02:22,474]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-02T11:32:22.50+0530 [APP/0] OUT [2016-03-02 06:02:22,508]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-02T11:32:22.72+0530 [APP/0] OUT [2016-03-02 06:02:22,721]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T11:32:22.86+0530 [APP/0] OUT [2016-03-02 06:02:22,861]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T11:32:23.23+0530 [APP/0] OUT [2016-03-02 06:02:23,235]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T11:32:23.29+0530 [APP/0] OUT [2016-03-02 06:02:23,294]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T11:32:24.42+0530 [APP/0] OUT [2016-03-02 06:02:24,427]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T11:32:24.58+0530 [APP/0] OUT [2016-03-02 06:02:24,581]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-02T11:32:25.55+0530 [APP/0] OUT [2016-03-02 06:02:25,555]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T11:32:25.60+0530 [APP/0] OUT [2016-03-02 06:02:25,601]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-02T11:32:25.60+0530 [APP/0] OUT [2016-03-02 06:02:25,603]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 46 sec
2016-03-02T11:32:26.01+0530 [APP/0] OUT [2016-03-02 06:02:26,014]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/

When I access https://10.254.0.2:9443/carbon/, time out page pops again.
What can I do now? Please help.

Thank you.



What can I do now?


Gwenn Etourneau
 

It seems you are missing most of the basic CF architecture.
Maybe you should understand how the routing layer is working in CF.


- http://docs.cloudfoundry.org/
- http://docs.cloudfoundry.org/concepts/architecture/


Thanks

On Wed, Mar 2, 2016 at 3:09 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi Gwenn,

I set the PORT environment variable to 8080. Now there are no errors in
the log. But the error ERR_CONNECTION_TIMED_OUT in the browser still pops
up. Here are the logs again.

2016-03-02T09:37:04.25+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss", "diego"=>true,
"docker_image"=>"isim/wso2dss"})
2016-03-02T09:37:04.48+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-02T09:37:04.49+0530 [CELL/0] OUT Exit status 0
2016-03-02T09:37:04.69+0530 [APP/0] OUT Exit status 255
2016-03-02T09:37:05.50+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-02T09:37:05.52+0530 [CELL/0] OUT Creating container
2016-03-02T09:37:13.30+0530 [CELL/0] OUT Successfully created container
2016-03-02T09:37:13.51+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T09:37:13.51+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,907]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T09:37:20.14+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T09:37:20.18+0530 [APP/0] OUT [2016-03-02 04:07:20,183]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T09:37:24.12+0530 [APP/0] OUT [2016-03-02 04:07:24,119]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 244ms
2016-03-02T09:37:24.77+0530 [APP/0] OUT [2016-03-02 04:07:24,774]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T09:37:25.88+0530 [APP/0] OUT [2016-03-02 04:07:25,888]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-02T09:37:38.12+0530 [APP/0] OUT [2016-03-02 04:07:38,124]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:42.92+0530 [APP/0] OUT [2016-03-02 04:07:42,925]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T09:37:43.08+0530 [APP/0] OUT [2016-03-02 04:07:43,083]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-02T09:37:43.12+0530 [APP/0] OUT [2016-03-02 04:07:43,124]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-02T09:37:44.16+0530 [APP/0] OUT [2016-03-02 04:07:44,160]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-02T09:37:44.19+0530 [APP/0] OUT [2016-03-02 04:07:44,191]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-02T09:37:44.36+0530 [APP/0] OUT [2016-03-02 04:07:44,367]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T09:37:44.52+0530 [APP/0] OUT [2016-03-02 04:07:44,527]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T09:37:45.01+0530 [APP/0] OUT [2016-03-02 04:07:45,013]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T09:37:45.04+0530 [APP/0] OUT [2016-03-02 04:07:45,039]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.55+0530 [APP/0] OUT [2016-03-02 04:07:46,552]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.78+0530 [APP/0] OUT [2016-03-02 04:07:46,781]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-02T09:37:47.44+0530 [APP/0] OUT [2016-03-02 04:07:47,443]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,542]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,546]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 33 sec
2016-03-02T09:37:48.13+0530 [APP/0] OUT [2016-03-02 04:07:48,134]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-02T09:38:30.50+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:08:30 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:36538
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:399c4ad1-9cb4-4591-7bce-9e094e83601f
response_time:0.007223831 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T09:38:30.87+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:08:30 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:3e4248d6-b7f7-43eb-7a4d-5926abd62759
response_time:0.004343669 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.11+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:922e9ff5-81d8-48d0-5013-8a6bd34f00de
response_time:0.010612915 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.66+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:95a26195-3e36-49ee-4096-5101906d994c
response_time:0.016394886 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.00+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:34 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:5c00d993-ac84-4a0c-5d73-fe0343f6244e
response_time:0.006500482 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.37+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:35 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:a7fbf275-28bf-4c97-5602-98c35f5cf573
response_time:0.009845242 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:50.81+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:50 +0000] "GET /10.254.0.2:9443/carbon/ HTTP/1.1" 502 0
67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:6050d8ef-9bbe-4d30-492c-89bb91296d4b
response_time:0.011323439 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:51.17+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:51 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/10.254.0.2:9443/carbon/" "Mozilla/5.0 (X11;
Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116
Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-"
x_forwarded_proto:"-" vcap_request_id:c2df5b70-46d5-4f9b-498f-5075181fceb7
response_time:0.005438891 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T11:31:11.77+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"environment_json"=>"PRIVATE DATA
HIDDEN"})
2016-03-02T11:31:19.71+0530 [STG/0] OUT Creating container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Successfully created container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Staging...
2016-03-02T11:31:20.75+0530 [STG/0] OUT Staging process started ...
2016-03-02T11:31:24.55+0530 [CELL/0] OUT Exit status 0
2016-03-02T11:31:24.74+0530 [APP/0] OUT Exit status 255
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging process finished
2016-03-02T11:31:26.05+0530 [STG/0] OUT Exit status 0
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging Complete
2016-03-02T11:31:26.72+0530 [CELL/0] OUT Creating container
2016-03-02T11:31:33.97+0530 [CELL/0] OUT Successfully created container
2016-03-02T11:31:35.45+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T11:31:35.45+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,520]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,859]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T11:31:50.91+0530 [APP/0] OUT [2016-03-02 06:01:50,911]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T11:31:56.15+0530 [APP/0] OUT [2016-03-02 06:01:56,151]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 210ms
2016-03-02T11:31:56.79+0530 [APP/0] OUT [2016-03-02 06:01:56,789]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T11:31:58.17+0530 [APP/0] OUT [2016-03-02 06:01:58,177]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
nanduni(a)nanduni-TECRA-M11:~/micro-cf/micropcf-v0.6.0$ cf logs dss --recent
Connected, dumping recent logs for app dss in org micropcf-org / space
micropcf-space as admin...

2016-03-02T09:37:04.48+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-02T09:37:04.49+0530 [CELL/0] OUT Exit status 0
2016-03-02T09:37:04.69+0530 [APP/0] OUT Exit status 255
2016-03-02T09:37:05.50+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-02T09:37:05.52+0530 [CELL/0] OUT Creating container
2016-03-02T09:37:13.30+0530 [CELL/0] OUT Successfully created container
2016-03-02T09:37:13.51+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T09:37:13.51+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,907]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T09:37:20.14+0530 [APP/0] OUT [2016-03-02 04:07:20,139]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T09:37:20.18+0530 [APP/0] OUT [2016-03-02 04:07:20,183]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T09:37:24.12+0530 [APP/0] OUT [2016-03-02 04:07:24,119]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 244ms
2016-03-02T09:37:24.77+0530 [APP/0] OUT [2016-03-02 04:07:24,774]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T09:37:25.88+0530 [APP/0] OUT [2016-03-02 04:07:25,888]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-02T09:37:38.12+0530 [APP/0] OUT [2016-03-02 04:07:38,124]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T09:37:42.92+0530 [APP/0] OUT [2016-03-02 04:07:42,925]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T09:37:43.08+0530 [APP/0] OUT [2016-03-02 04:07:43,083]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-02T09:37:43.12+0530 [APP/0] OUT [2016-03-02 04:07:43,124]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-02T09:37:44.16+0530 [APP/0] OUT [2016-03-02 04:07:44,160]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-02T09:37:44.19+0530 [APP/0] OUT [2016-03-02 04:07:44,191]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-02T09:37:44.36+0530 [APP/0] OUT [2016-03-02 04:07:44,367]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T09:37:44.52+0530 [APP/0] OUT [2016-03-02 04:07:44,527]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T09:37:45.01+0530 [APP/0] OUT [2016-03-02 04:07:45,013]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T09:37:45.04+0530 [APP/0] OUT [2016-03-02 04:07:45,039]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.55+0530 [APP/0] OUT [2016-03-02 04:07:46,552]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T09:37:46.78+0530 [APP/0] OUT [2016-03-02 04:07:46,781]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-02T09:37:47.44+0530 [APP/0] OUT [2016-03-02 04:07:47,443]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,542]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,546]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 33 sec
2016-03-02T09:37:48.13+0530 [APP/0] OUT [2016-03-02 04:07:48,134]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-02T09:38:30.50+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:08:30 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:36538
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:399c4ad1-9cb4-4591-7bce-9e094e83601f
response_time:0.007223831 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T09:38:30.87+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:08:30 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:3e4248d6-b7f7-43eb-7a4d-5926abd62759
response_time:0.004343669 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.11+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:922e9ff5-81d8-48d0-5013-8a6bd34f00de
response_time:0.010612915 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.66+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:38:41 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:95a26195-3e36-49ee-4096-5101906d994c
response_time:0.016394886 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.00+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:34 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:5c00d993-ac84-4a0c-5d73-fe0343f6244e
response_time:0.006500482 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.37+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:04:40:35 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:a7fbf275-28bf-4c97-5602-98c35f5cf573
response_time:0.009845242 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:50.81+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:50 +0000] "GET /10.254.0.2:9443/carbon/ HTTP/1.1" 502 0
67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like
Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:6050d8ef-9bbe-4d30-492c-89bb91296d4b
response_time:0.011323439 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:51.17+0530 [RTR/0] OUT dss.local.micropcf.io -
[02/03/2016:05:23:51 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/10.254.0.2:9443/carbon/" "Mozilla/5.0 (X11;
Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116
Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-"
x_forwarded_proto:"-" vcap_request_id:c2df5b70-46d5-4f9b-498f-5075181fceb7
response_time:0.005438891 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T11:31:11.77+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"environment_json"=>"PRIVATE DATA
HIDDEN"})
2016-03-02T11:31:19.71+0530 [STG/0] OUT Creating container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Successfully created container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Staging...
2016-03-02T11:31:20.75+0530 [STG/0] OUT Staging process started ...
2016-03-02T11:31:24.55+0530 [CELL/0] OUT Exit status 0
2016-03-02T11:31:24.74+0530 [APP/0] OUT Exit status 255
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging process finished
2016-03-02T11:31:26.05+0530 [STG/0] OUT Exit status 0
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging Complete
2016-03-02T11:31:26.72+0530 [CELL/0] OUT Creating container
2016-03-02T11:31:33.97+0530 [CELL/0] OUT Successfully created container
2016-03-02T11:31:35.45+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T11:31:35.45+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,520]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,859]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-02T11:31:50.91+0530 [APP/0] OUT [2016-03-02 06:01:50,911]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-02T11:31:56.15+0530 [APP/0] OUT [2016-03-02 06:01:56,151]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 210ms
2016-03-02T11:31:56.79+0530 [APP/0] OUT [2016-03-02 06:01:56,789]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-02T11:31:58.17+0530 [APP/0] OUT [2016-03-02 06:01:58,177]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-02T11:32:15.41+0530 [APP/0] OUT [2016-03-02 06:02:15,416]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-02T11:32:16.86+0530 [APP/0] OUT [2016-03-02 06:02:16,867]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T11:32:16.87+0530 [APP/0] OUT [2016-03-02 06:02:16,868]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-02T11:32:21.05+0530 [APP/0] OUT [2016-03-02 06:02:21,056]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T11:32:21.20+0530 [APP/0] OUT [2016-03-02 06:02:21,202]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-02T11:32:21.23+0530 [APP/0] OUT [2016-03-02 06:02:21,236]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-02T11:32:22.44+0530 [APP/0] OUT [2016-03-02 06:02:22,439]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-02T11:32:22.44+0530 [APP/0] OUT [2016-03-02 06:02:22,440]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-02T11:32:22.47+0530 [APP/0] OUT [2016-03-02 06:02:22,474]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-02T11:32:22.50+0530 [APP/0] OUT [2016-03-02 06:02:22,508]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-02T11:32:22.72+0530 [APP/0] OUT [2016-03-02 06:02:22,721]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T11:32:22.86+0530 [APP/0] OUT [2016-03-02 06:02:22,861]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T11:32:23.23+0530 [APP/0] OUT [2016-03-02 06:02:23,235]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T11:32:23.29+0530 [APP/0] OUT [2016-03-02 06:02:23,294]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T11:32:24.42+0530 [APP/0] OUT [2016-03-02 06:02:24,427]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-02T11:32:24.58+0530 [APP/0] OUT [2016-03-02 06:02:24,581]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-02T11:32:25.55+0530 [APP/0] OUT [2016-03-02 06:02:25,555]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T11:32:25.60+0530 [APP/0] OUT [2016-03-02 06:02:25,601]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-02T11:32:25.60+0530 [APP/0] OUT [2016-03-02 06:02:25,603]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 46 sec
2016-03-02T11:32:26.01+0530 [APP/0] OUT [2016-03-02 06:02:26,014]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/

When I access https://10.254.0.2:9443/carbon/, time out page pops again.
What can I do now? Please help.

Thank you.



What can I do now?


Nanduni Nimalsiri
 

Hi Gwenn,

I set the PORT environment variable to 8080. Now there are no errors in the log. But the error ERR_CONNECTION_TIMED_OUT in the browser still pops up. Here are the logs again.

2016-03-02T09:37:04.25+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss", "diego"=>true, "docker_image"=>"isim/wso2dss"})
2016-03-02T09:37:04.48+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-02T09:37:04.49+0530 [CELL/0] OUT Exit status 0
2016-03-02T09:37:04.69+0530 [APP/0] OUT Exit status 255
2016-03-02T09:37:05.50+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-02T09:37:05.52+0530 [CELL/0] OUT Creating container
2016-03-02T09:37:13.30+0530 [CELL/0] OUT Successfully created container
2016-03-02T09:37:13.51+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T09:37:13.51+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,907] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,908] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-02T09:37:20.14+0530 [APP/0] OUT [2016-03-02 04:07:20,139] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-02T09:37:20.18+0530 [APP/0] OUT [2016-03-02 04:07:20,183] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-02T09:37:24.12+0530 [APP/0] OUT [2016-03-02 04:07:24,119] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 244ms
2016-03-02T09:37:24.77+0530 [APP/0] OUT [2016-03-02 04:07:24,774] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-02T09:37:25.88+0530 [APP/0] OUT [2016-03-02 04:07:25,888] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-02T09:37:38.12+0530 [APP/0] OUT [2016-03-02 04:07:38,124] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-02T09:37:42.92+0530 [APP/0] OUT [2016-03-02 04:07:42,925] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T09:37:43.08+0530 [APP/0] OUT [2016-03-02 04:07:43,083] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-02T09:37:43.12+0530 [APP/0] OUT [2016-03-02 04:07:43,124] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-02T09:37:44.16+0530 [APP/0] OUT [2016-03-02 04:07:44,160] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-02T09:37:44.19+0530 [APP/0] OUT [2016-03-02 04:07:44,191] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-02T09:37:44.36+0530 [APP/0] OUT [2016-03-02 04:07:44,367] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T09:37:44.52+0530 [APP/0] OUT [2016-03-02 04:07:44,527] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T09:37:45.01+0530 [APP/0] OUT [2016-03-02 04:07:45,013] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T09:37:45.04+0530 [APP/0] OUT [2016-03-02 04:07:45,039] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-02T09:37:46.55+0530 [APP/0] OUT [2016-03-02 04:07:46,552] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-02T09:37:46.78+0530 [APP/0] OUT [2016-03-02 04:07:46,781] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-02T09:37:47.44+0530 [APP/0] OUT [2016-03-02 04:07:47,443] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,542] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,546] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 33 sec
2016-03-02T09:37:48.13+0530 [APP/0] OUT [2016-03-02 04:07:48,134] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-02T09:38:30.50+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:08:30 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:399c4ad1-9cb4-4591-7bce-9e094e83601f response_time:0.007223831 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T09:38:30.87+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:08:30 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:3e4248d6-b7f7-43eb-7a4d-5926abd62759 response_time:0.004343669 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.11+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:38:41 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:922e9ff5-81d8-48d0-5013-8a6bd34f00de response_time:0.010612915 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.66+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:38:41 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:95a26195-3e36-49ee-4096-5101906d994c response_time:0.016394886 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.00+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:40:34 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:5c00d993-ac84-4a0c-5d73-fe0343f6244e response_time:0.006500482 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.37+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:40:35 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:a7fbf275-28bf-4c97-5602-98c35f5cf573 response_time:0.009845242 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:50.81+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:05:23:50 +0000] "GET /10.254.0.2:9443/carbon/ HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:6050d8ef-9bbe-4d30-492c-89bb91296d4b response_time:0.011323439 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:51.17+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:05:23:51 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/10.254.0.2:9443/carbon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:c2df5b70-46d5-4f9b-498f-5075181fceb7 response_time:0.005438891 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T11:31:11.77+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"environment_json"=>"PRIVATE DATA HIDDEN"})
2016-03-02T11:31:19.71+0530 [STG/0] OUT Creating container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Successfully created container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Staging...
2016-03-02T11:31:20.75+0530 [STG/0] OUT Staging process started ...
2016-03-02T11:31:24.55+0530 [CELL/0] OUT Exit status 0
2016-03-02T11:31:24.74+0530 [APP/0] OUT Exit status 255
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging process finished
2016-03-02T11:31:26.05+0530 [STG/0] OUT Exit status 0
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging Complete
2016-03-02T11:31:26.72+0530 [CELL/0] OUT Creating container
2016-03-02T11:31:33.97+0530 [CELL/0] OUT Successfully created container
2016-03-02T11:31:35.45+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T11:31:35.45+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,520] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,859] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-02T11:31:50.91+0530 [APP/0] OUT [2016-03-02 06:01:50,911] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-02T11:31:56.15+0530 [APP/0] OUT [2016-03-02 06:01:56,151] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 210ms
2016-03-02T11:31:56.79+0530 [APP/0] OUT [2016-03-02 06:01:56,789] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-02T11:31:58.17+0530 [APP/0] OUT [2016-03-02 06:01:58,177] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
nanduni(a)nanduni-TECRA-M11:~/micro-cf/micropcf-v0.6.0$ cf logs dss --recent
Connected, dumping recent logs for app dss in org micropcf-org / space micropcf-space as admin...

2016-03-02T09:37:04.48+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-02T09:37:04.49+0530 [CELL/0] OUT Exit status 0
2016-03-02T09:37:04.69+0530 [APP/0] OUT Exit status 255
2016-03-02T09:37:05.50+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-02T09:37:05.52+0530 [CELL/0] OUT Creating container
2016-03-02T09:37:13.30+0530 [CELL/0] OUT Successfully created container
2016-03-02T09:37:13.51+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T09:37:13.51+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,907] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-02T09:37:19.90+0530 [APP/0] OUT [2016-03-02 04:07:19,908] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,908] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-02T09:37:19.91+0530 [APP/0] OUT [2016-03-02 04:07:19,909] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-02T09:37:20.13+0530 [APP/0] OUT [2016-03-02 04:07:20,139] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-02T09:37:20.14+0530 [APP/0] OUT [2016-03-02 04:07:20,139] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-02T09:37:20.18+0530 [APP/0] OUT [2016-03-02 04:07:20,183] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-02T09:37:24.12+0530 [APP/0] OUT [2016-03-02 04:07:24,119] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 244ms
2016-03-02T09:37:24.77+0530 [APP/0] OUT [2016-03-02 04:07:24,774] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-02T09:37:25.88+0530 [APP/0] OUT [2016-03-02 04:07:25,888] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-02T09:37:38.12+0530 [APP/0] OUT [2016-03-02 04:07:38,124] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-02T09:37:39.45+0530 [APP/0] OUT [2016-03-02 04:07:39,455] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-02T09:37:42.92+0530 [APP/0] OUT [2016-03-02 04:07:42,925] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T09:37:43.08+0530 [APP/0] OUT [2016-03-02 04:07:43,083] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-02T09:37:43.12+0530 [APP/0] OUT [2016-03-02 04:07:43,124] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-02T09:37:44.11+0530 [APP/0] OUT [2016-03-02 04:07:44,111] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-02T09:37:44.16+0530 [APP/0] OUT [2016-03-02 04:07:44,160] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-02T09:37:44.19+0530 [APP/0] OUT [2016-03-02 04:07:44,191] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-02T09:37:44.36+0530 [APP/0] OUT [2016-03-02 04:07:44,367] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T09:37:44.52+0530 [APP/0] OUT [2016-03-02 04:07:44,527] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T09:37:45.01+0530 [APP/0] OUT [2016-03-02 04:07:45,013] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T09:37:45.04+0530 [APP/0] OUT [2016-03-02 04:07:45,039] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-02T09:37:46.55+0530 [APP/0] OUT [2016-03-02 04:07:46,552] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-02T09:37:46.78+0530 [APP/0] OUT [2016-03-02 04:07:46,781] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-02T09:37:47.44+0530 [APP/0] OUT [2016-03-02 04:07:47,443] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,542] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-02T09:37:47.54+0530 [APP/0] OUT [2016-03-02 04:07:47,546] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 33 sec
2016-03-02T09:37:48.13+0530 [APP/0] OUT [2016-03-02 04:07:48,134] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-02T09:38:30.50+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:08:30 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:399c4ad1-9cb4-4591-7bce-9e094e83601f response_time:0.007223831 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T09:38:30.87+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:08:30 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:36538 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:3e4248d6-b7f7-43eb-7a4d-5926abd62759 response_time:0.004343669 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.11+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:38:41 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:922e9ff5-81d8-48d0-5013-8a6bd34f00de response_time:0.010612915 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:08:41.66+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:38:41 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:95a26195-3e36-49ee-4096-5101906d994c response_time:0.016394886 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.00+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:40:34 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:5c00d993-ac84-4a0c-5d73-fe0343f6244e response_time:0.006500482 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:10:35.37+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:04:40:35 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:38723 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:a7fbf275-28bf-4c97-5602-98c35f5cf573 response_time:0.009845242 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:50.81+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:05:23:50 +0000] "GET /10.254.0.2:9443/carbon/ HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:6050d8ef-9bbe-4d30-492c-89bb91296d4b response_time:0.011323439 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T10:53:51.17+0530 [RTR/0] OUT dss.local.micropcf.io - [02/03/2016:05:23:51 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/10.254.0.2:9443/carbon/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:41665 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:c2df5b70-46d5-4f9b-498f-5075181fceb7 response_time:0.005438891 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-02T11:31:11.77+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"environment_json"=>"PRIVATE DATA HIDDEN"})
2016-03-02T11:31:19.71+0530 [STG/0] OUT Creating container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Successfully created container
2016-03-02T11:31:20.62+0530 [STG/0] OUT Staging...
2016-03-02T11:31:20.75+0530 [STG/0] OUT Staging process started ...
2016-03-02T11:31:24.55+0530 [CELL/0] OUT Exit status 0
2016-03-02T11:31:24.74+0530 [APP/0] OUT Exit status 255
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging process finished
2016-03-02T11:31:26.05+0530 [STG/0] OUT Exit status 0
2016-03-02T11:31:26.05+0530 [STG/0] OUT Staging Complete
2016-03-02T11:31:26.72+0530 [CELL/0] OUT Creating container
2016-03-02T11:31:33.97+0530 [CELL/0] OUT Successfully created container
2016-03-02T11:31:35.45+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-02T11:31:35.45+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,520] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,521] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-02T11:31:50.52+0530 [APP/0] OUT [2016-03-02 06:01:50,522] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,858] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-02T11:31:50.85+0530 [APP/0] OUT [2016-03-02 06:01:50,859] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-02T11:31:50.91+0530 [APP/0] OUT [2016-03-02 06:01:50,911] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-02T11:31:56.15+0530 [APP/0] OUT [2016-03-02 06:01:56,151] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 210ms
2016-03-02T11:31:56.79+0530 [APP/0] OUT [2016-03-02 06:01:56,789] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-02T11:31:58.17+0530 [APP/0] OUT [2016-03-02 06:01:58,177] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-02T11:32:15.41+0530 [APP/0] OUT [2016-03-02 06:02:15,416] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-02T11:32:16.86+0530 [APP/0] OUT [2016-03-02 06:02:16,867] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-02T11:32:16.87+0530 [APP/0] OUT [2016-03-02 06:02:16,868] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-02T11:32:21.05+0530 [APP/0] OUT [2016-03-02 06:02:21,056] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-02T11:32:21.20+0530 [APP/0] OUT [2016-03-02 06:02:21,202] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-02T11:32:21.23+0530 [APP/0] OUT [2016-03-02 06:02:21,236] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-02T11:32:22.44+0530 [APP/0] OUT [2016-03-02 06:02:22,439] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-02T11:32:22.44+0530 [APP/0] OUT [2016-03-02 06:02:22,440] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-02T11:32:22.47+0530 [APP/0] OUT [2016-03-02 06:02:22,474] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-02T11:32:22.50+0530 [APP/0] OUT [2016-03-02 06:02:22,508] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-02T11:32:22.72+0530 [APP/0] OUT [2016-03-02 06:02:22,721] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-02T11:32:22.86+0530 [APP/0] OUT [2016-03-02 06:02:22,861] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-02T11:32:23.23+0530 [APP/0] OUT [2016-03-02 06:02:23,235] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-02T11:32:23.29+0530 [APP/0] OUT [2016-03-02 06:02:23,294] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-02T11:32:24.42+0530 [APP/0] OUT [2016-03-02 06:02:24,427] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-02T11:32:24.58+0530 [APP/0] OUT [2016-03-02 06:02:24,581] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-02T11:32:25.55+0530 [APP/0] OUT [2016-03-02 06:02:25,555] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-02T11:32:25.60+0530 [APP/0] OUT [2016-03-02 06:02:25,601] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-02T11:32:25.60+0530 [APP/0] OUT [2016-03-02 06:02:25,603] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 46 sec
2016-03-02T11:32:26.01+0530 [APP/0] OUT [2016-03-02 06:02:26,014] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/

When I access https://10.254.0.2:9443/carbon/, time out page pops again. What can I do now? Please help.

Thank you.



What can I do now?


Gwenn Etourneau
 

" Timed out after 1m0s: health check never passed. "

You application inside docker should listen on 8080

You can check that too
https://github.com/cloudfoundry-incubator/diego-design-notes/blob/master/docker-support.md

On Tue, Mar 1, 2016 at 5:43 PM, Nanduni Nimalsiri <nandunibw(a)gmail.com>
wrote:

Hi all,

I am trying to deploy a docker image in Cloud Foundry. This specific image
is to run WSO2 Data Services Server. I checked its functionality by running
it as docker run ..., and it works perfectly fine. What I want is to run
this image in Cloud Foundry.
When I use the command,
cf push dss -o isim/wso2dss, it finally gives the following error message.
"'FAILED Start app timeout
TIP: Application must be listening on the right port. Instead of hard
coding the port, use the $PORT environment variable.'.

Then I looked for cf logs dss --recent, where I got the following report.

2016-03-01T11:25:18.97+0530 [APP/0] OUT [2016-03-01 05:55:18,979]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:25:19.00+0530 [APP/0] OUT [2016-03-01 05:55:19,007]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:25:20.80+0530 [APP/0] OUT [2016-03-01 05:55:20,805]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:25:21.17+0530 [APP/0] OUT [2016-03-01 05:55:21,174]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-01T11:25:21.96+0530 [APP/0] OUT [2016-03-01 05:55:21,966]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:25:22.03+0530 [APP/0] OUT [2016-03-01 05:55:22,035]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:25:22.04+0530 [APP/0] OUT [2016-03-01 05:55:22,037]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 38 sec
2016-03-01T11:25:22.47+0530 [APP/0] OUT [2016-03-01 05:55:22,474]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:25:42.70+0530 [CELL/0] ERR Timed out after 1m0s: health
check never passed.
2016-03-01T11:25:42.71+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:25:42.91+0530 [APP/0] OUT Exit status 255
2016-03-01T11:25:42.94+0530 [API/0] OUT App instance exited with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload:
{"instance"=>"6e7a7b6b-e3fa-45e7-4c63-9e0a958eeead", "index"=>0,
"reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2
error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2
error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>5,
"crash_timestamp"=>1456811742921582038,
"version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}
2016-03-01T11:28:06.21+0530 [CELL/0] OUT Creating container
2016-03-01T11:28:12.90+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:28:12.90+0530 [CELL/0] OUT Starting health monitoring of
container
2016-03-01T11:28:13.06+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:28:13.06+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:28:20.00+0530 [APP/0] OUT [2016-03-01 05:58:20,006]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-01T11:28:20.00+0530 [APP/0] OUT [2016-03-01 05:58:20,007]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:28:20.00+0530 [APP/0] OUT [2016-03-01 05:58:20,007]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,008]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,008]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,009]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,009]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,009]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-01T11:28:20.20+0530 [APP/0] OUT [2016-03-01 05:58:20,205]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-01T11:28:20.20+0530 [APP/0] OUT [2016-03-01 05:58:20,206]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-01T11:28:20.20+0530 [APP/0] OUT [2016-03-01 05:58:20,206]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-01T11:28:20.24+0530 [APP/0] OUT [2016-03-01 05:58:20,245]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-01T11:28:25.09+0530 [APP/0] OUT [2016-03-01 05:58:25,097]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 277ms
2016-03-01T11:28:25.98+0530 [APP/0] OUT [2016-03-01 05:58:25,985]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-01T11:28:27.41+0530 [APP/0] OUT [2016-03-01 05:58:27,411]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-01T11:28:39.34+0530 [APP/0] OUT [2016-03-01 05:58:39,343]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:28:40.95+0530 [APP/0] OUT [2016-03-01 05:58:40,956]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:28:40.95+0530 [APP/0] OUT [2016-03-01 05:58:40,957]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:28:45.25+0530 [APP/0] OUT [2016-03-01 05:58:45,254]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:28:45.45+0530 [APP/0] OUT [2016-03-01 05:58:45,458]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-01T11:28:45.48+0530 [APP/0] OUT [2016-03-01 05:58:45,486]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-01T11:28:46.52+0530 [APP/0] OUT [2016-03-01 05:58:46,524]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-01T11:28:46.52+0530 [APP/0] OUT [2016-03-01 05:58:46,528]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-01T11:28:46.56+0530 [APP/0] OUT [2016-03-01 05:58:46,559]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-01T11:28:46.59+0530 [APP/0] OUT [2016-03-01 05:58:46,590]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-01T11:28:46.75+0530 [APP/0] OUT [2016-03-01 05:58:46,758]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:28:46.88+0530 [APP/0] OUT [2016-03-01 05:58:46,882]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:28:47.28+0530 [APP/0] OUT [2016-03-01 05:58:47,280]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:28:47.30+0530 [APP/0] OUT [2016-03-01 05:58:47,307]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:28:48.60+0530 [APP/0] OUT [2016-03-01 05:58:48,600]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:28:49.01+0530 [APP/0] OUT [2016-03-01 05:58:49,014]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-01T11:28:49.84+0530 [APP/0] OUT [2016-03-01 05:58:49,846]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:28:49.89+0530 [APP/0] OUT [2016-03-01 05:58:49,895]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:28:49.89+0530 [APP/0] OUT [2016-03-01 05:58:49,897]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 36 sec
2016-03-01T11:28:50.36+0530 [APP/0] OUT [2016-03-01 05:58:50,360]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:29:13.64+0530 [CELL/0] ERR Timed out after 1m0s: health
check never passed.
2016-03-01T11:29:13.66+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:29:13.85+0530 [APP/0] OUT Exit status 255
2016-03-01T11:29:13.88+0530 [API/0] OUT App instance exited with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload:
{"instance"=>"56cee7b0-cd3d-46e6-665a-de09569d1447", "index"=>0,
"reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2
error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2
error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>6,
"crash_timestamp"=>1456811953861155081,
"version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}
2016-03-01T11:33:36.60+0530 [CELL/0] OUT Creating container
2016-03-01T11:33:43.40+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:33:43.40+0530 [CELL/0] OUT Starting health monitoring of
container
2016-03-01T11:33:43.56+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:33:43.56+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:33:52.15+0530 [APP/0] OUT [2016-03-01 06:03:52,158]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,159]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,159]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,159]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,160]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,160]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,161]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,161]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-01T11:33:52.36+0530 [APP/0] OUT [2016-03-01 06:03:52,360]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-01T11:33:52.36+0530 [APP/0] OUT [2016-03-01 06:03:52,360]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-01T11:33:52.36+0530 [APP/0] OUT [2016-03-01 06:03:52,360]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-01T11:33:52.40+0530 [APP/0] OUT [2016-03-01 06:03:52,401]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-01T11:33:58.60+0530 [APP/0] OUT [2016-03-01 06:03:58,599]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 345ms
2016-03-01T11:34:00.01+0530 [APP/0] OUT [2016-03-01 06:04:00,012]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-01T11:34:02.94+0530 [APP/0] OUT [2016-03-01 06:04:02,938]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-01T11:34:17.32+0530 [APP/0] OUT [2016-03-01 06:04:17,323]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:34:18.73+0530 [APP/0] OUT [2016-03-01 06:04:18,730]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:34:18.73+0530 [APP/0] OUT [2016-03-01 06:04:18,731]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:34:23.40+0530 [APP/0] OUT [2016-03-01 06:04:23,406]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:34:23.67+0530 [APP/0] OUT [2016-03-01 06:04:23,667]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-01T11:34:23.72+0530 [APP/0] OUT [2016-03-01 06:04:23,724]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-01T11:34:24.73+0530 [APP/0] OUT [2016-03-01 06:04:24,733]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-01T11:34:24.73+0530 [APP/0] OUT [2016-03-01 06:04:24,734]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-01T11:34:24.76+0530 [APP/0] OUT [2016-03-01 06:04:24,759]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-01T11:34:24.78+0530 [APP/0] OUT [2016-03-01 06:04:24,783]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-01T11:34:25.04+0530 [APP/0] OUT [2016-03-01 06:04:25,040]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:34:25.15+0530 [APP/0] OUT [2016-03-01 06:04:25,155]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:34:25.47+0530 [APP/0] OUT [2016-03-01 06:04:25,469]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:34:25.54+0530 [APP/0] OUT [2016-03-01 06:04:25,538]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:34:26.71+0530 [APP/0] OUT [2016-03-01 06:04:26,659]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:34:27.46+0530 [APP/0] OUT [2016-03-01 06:04:27,460]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-01T11:34:28.73+0530 [APP/0] OUT [2016-03-01 06:04:28,732]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,775]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,776]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 44 sec
2016-03-01T11:34:29.25+0530 [APP/0] OUT [2016-03-01 06:04:29,254]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:34:43.91+0530 [CELL/0] ERR Timed out after 1m0s: health
check never passed.
2016-03-01T11:34:43.93+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:34:44.13+0530 [APP/0] OUT Exit status 255
2016-03-01T11:34:44.18+0530 [API/0] OUT App instance exited with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload:
{"instance"=>"700b9b02-4694-4406-498c-40b1082e1a54", "index"=>0,
"reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2
error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2
error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>7,
"crash_timestamp"=>1456812284143594322,
"version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}


The error it displayed was "ERR Timed out after 1m0s: health check never
passed". Therefore I thought to run the image without health check. Then it
displays me the message that the app has started and it is running.
#0 running 2016-03-01 11:48:45 AM 0.7% 632.5M of 1G 31.6M of 1G

But when I access the app in the browser, it gives me the error,
"ERR_CONNECTION_TIMED_OUT"
I looked for logs again. It is as follows.

2016-03-01T11:34:28.73+0530 [APP/0] OUT [2016-03-01 06:04:28,732]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,775]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,776]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 44 sec
2016-03-01T11:34:29.25+0530 [APP/0] OUT [2016-03-01 06:04:29,254]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:34:43.91+0530 [CELL/0] ERR Timed out after 1m0s: health
check never passed.
2016-03-01T11:34:43.93+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:34:44.13+0530 [APP/0] OUT Exit status 255
2016-03-01T11:34:44.18+0530 [API/0] OUT App instance exited with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload:
{"instance"=>"700b9b02-4694-4406-498c-40b1082e1a54", "index"=>0,
"reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2
error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2
error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>7,
"crash_timestamp"=>1456812284143594322,
"version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}
2016-03-01T11:42:57.39+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss",
"health_check_type"=>"none", "diego"=>true, "docker_image"=>"isim/wso2dss"})
2016-03-01T11:42:57.84+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-01T11:42:59.51+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-01T11:42:59.55+0530 [CELL/0] OUT Creating container
2016-03-01T11:43:06.43+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:43:06.62+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:43:06.62+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,981]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,982]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,982]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,982]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,983]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,983]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,983]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,984]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-01T11:43:13.20+0530 [APP/0] OUT [2016-03-01 06:13:13,206]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-01T11:43:13.20+0530 [APP/0] OUT [2016-03-01 06:13:13,207]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-01T11:43:13.20+0530 [APP/0] OUT [2016-03-01 06:13:13,207]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-01T11:43:13.24+0530 [APP/0] OUT [2016-03-01 06:13:13,237]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-01T11:43:17.08+0530 [APP/0] OUT [2016-03-01 06:13:17,086]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 237ms
2016-03-01T11:43:17.81+0530 [APP/0] OUT [2016-03-01 06:13:17,818]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-01T11:43:18.90+0530 [APP/0] OUT [2016-03-01 06:13:18,896]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-01T11:43:29.02+0530 [APP/0] OUT [2016-03-01 06:13:29,019]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:43:30.33+0530 [APP/0] OUT [2016-03-01 06:13:30,335]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:43:30.33+0530 [APP/0] OUT [2016-03-01 06:13:30,335]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:43:33.60+0530 [APP/0] OUT [2016-03-01 06:13:33,600]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:43:33.70+0530 [APP/0] OUT [2016-03-01 06:13:33,704]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-01T11:43:33.73+0530 [APP/0] OUT [2016-03-01 06:13:33,731]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-01T11:43:35.03+0530 [APP/0] OUT [2016-03-01 06:13:35,030]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-01T11:43:35.03+0530 [APP/0] OUT [2016-03-01 06:13:35,031]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-01T11:43:35.06+0530 [APP/0] OUT [2016-03-01 06:13:35,064]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-01T11:43:35.09+0530 [APP/0] OUT [2016-03-01 06:13:35,094]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-01T11:43:35.22+0530 [APP/0] OUT [2016-03-01 06:13:35,222]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:43:35.37+0530 [APP/0] OUT [2016-03-01 06:13:35,371]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:43:35.68+0530 [APP/0] OUT [2016-03-01 06:13:35,683]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:43:35.71+0530 [APP/0] OUT [2016-03-01 06:13:35,715]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:43:36.92+0530 [APP/0] OUT [2016-03-01 06:13:36,926]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:43:37.10+0530 [APP/0] OUT [2016-03-01 06:13:37,107]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-01T11:43:37.82+0530 [APP/0] OUT [2016-03-01 06:13:37,821]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:43:37.89+0530 [APP/0] OUT [2016-03-01 06:13:37,890]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:43:37.89+0530 [APP/0] OUT [2016-03-01 06:13:37,892]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 30 sec
2016-03-01T11:43:38.35+0530 [APP/0] OUT [2016-03-01 06:13:38,358]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:43:53.44+0530 [RTR/0] OUT dss.local.micropcf.io -
[01/03/2016:06:13:52 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34154
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:c870633f-4dbe-4e4f-73ea-d63b247d0054
response_time:0.539003843 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:43:53.85+0530 [RTR/0] OUT dss.local.micropcf.io -
[01/03/2016:06:13:53 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:34154 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:d0cc5ff1-ccd4-4e83-75f2-6a976f38f0af
response_time:0.012464457 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:48:34.88+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss",
"health_check_type"=>"none", "diego"=>true, "docker_image"=>"isim/wso2dss"})
2016-03-01T11:48:35.21+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-01T11:48:35.22+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:48:35.42+0530 [APP/0] OUT Exit status 255
2016-03-01T11:48:36.38+0530 [API/0] OUT Updated app with guid
4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-01T11:48:36.41+0530 [CELL/0] OUT Creating container
2016-03-01T11:48:45.13+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:48:45.30+0530 [APP/0] OUT JAVA_HOME environment
variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:48:45.30+0530 [APP/0] OUT CARBON_HOME environment
variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:48:51.46+0530 [APP/0] OUT [2016-03-01 06:18:51,468]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2
Carbon...
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating
System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home
: /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version
: 1.7.0_80
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM
: Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,470]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home
: /opt/wso2dss-3.5.0
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,470]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir
: /opt/wso2dss-3.5.0/tmp
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,470]
INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User
: root, en-US, Etc/UTC
2016-03-01T11:48:51.74+0530 [APP/0] OUT [2016-03-01 06:18:51,741]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Carbon is configured to use the default keystore (wso2carbon.jks). To
maximize security when deploying to a production environment, configure a
new keystore with a unique password in the production server profile.
2016-03-01T11:48:51.74+0530 [APP/0] OUT [2016-03-01 06:18:51,741]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Swap Memory size (MB): 1174 of the system is below the recommended
minimum size :2047
2016-03-01T11:48:51.74+0530 [APP/0] OUT [2016-03-01 06:18:51,742]
WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter}
- Maximum free Disk Space (MB): 221 of the system is below the recommended
minimum size :1024
2016-03-01T11:48:51.78+0530 [APP/0] OUT [2016-03-01 06:18:51,778]
INFO
{org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent}
- Activating GoogleTokengen DS component
2016-03-01T11:48:56.55+0530 [APP/0] OUT [2016-03-01 06:18:56,555]
INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} -
Configured Registry in 583ms
2016-03-01T11:48:57.47+0530 [APP/0] OUT [2016-03-01 06:18:57,473]
INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent}
- Registry Mode : READ-WRITE
2016-03-01T11:48:58.18+0530 [RTR/0] OUT dss.local.micropcf.io -
[01/03/2016:06:18:58 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34517
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:f3b88d12-2e2e-48b8-7c2e-5a4912eed567
response_time:0.015918547 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:48:58.78+0530 [RTR/0] OUT dss.local.micropcf.io -
[01/03/2016:06:18:58 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:34517 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:4e424517-cb6b-4fb3-6fb7-da22934c1022
response_time:0.022641136 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:48:59.16+0530 [APP/0] OUT [2016-03-01 06:18:59,162]
INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon
UserStoreMgtDSComponent activated successfully.
2016-03-01T11:49:03.89+0530 [RTR/0] OUT dss.local.micropcf.io -
[01/03/2016:06:19:03 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0
(X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)
Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34517
x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:cb0d3072-0e7b-4e4e-798e-2c14c81f5b2b
response_time:0.018722143 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:49:04.36+0530 [RTR/0] OUT dss.local.micropcf.io -
[01/03/2016:06:19:04 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "
http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"
192.168.11.1:34517 x_forwarded_for:"-" x_forwarded_proto:"-"
vcap_request_id:797f0afb-deaf-48eb-54ce-4fdcf8fbd3c4
response_time:0.004437919 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:49:10.40+0530 [APP/0] OUT [2016-03-01 06:19:10,400]
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI:
http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:49:12.22+0530 [APP/0] OUT [2016-03-01 06:19:12,219]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:49:12.23+0530 [APP/0] OUT [2016-03-01 06:19:12,229]
INFO
{org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer}
- User Store Configuration Deployer initiated.
2016-03-01T11:49:17.07+0530 [APP/0] OUT [2016-03-01 06:19:17,071]
INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository :
/opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:49:17.23+0530 [APP/0] OUT [2016-03-01 06:19:17,229]
INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using
tenant lazy loading policy...
2016-03-01T11:49:17.27+0530 [APP/0] OUT [2016-03-01 06:19:17,275]
INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} -
Permission cache updated for tenant -1234
2016-03-01T11:49:18.51+0530 [APP/0] OUT [2016-03-01 06:19:18,518]
INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS
port : 9443
2016-03-01T11:49:18.52+0530 [APP/0] OUT [2016-03-01 06:19:18,519]
INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP
port : 9763
2016-03-01T11:49:18.55+0530 [APP/0] OUT [2016-03-01 06:19:18,558]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: echo {super-tenant}
2016-03-01T11:49:18.59+0530 [APP/0] OUT [2016-03-01 06:19:18,593]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: Version {super-tenant}
2016-03-01T11:49:18.79+0530 [APP/0] OUT [2016-03-01 06:19:18,791]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:49:18.98+0530 [APP/0] OUT [2016-03-01 06:19:18,986]
INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed
webapp:
StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:49:19.33+0530 [APP/0] OUT [2016-03-01 06:19:19,334]
INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying
Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:49:19.38+0530 [APP/0] OUT [2016-03-01 06:19:19,386]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:49:20.97+0530 [APP/0] OUT [2016-03-01 06:19:20,971]
INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared
selector for servlet write/read
2016-03-01T11:49:21.28+0530 [APP/0] OUT [2016-03-01 06:19:21,269]
INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task
service starting in STANDALONE mode...
2016-03-01T11:49:22.54+0530 [APP/0] OUT [2016-03-01 06:19:22,544]
INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL :
service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:49:22.61+0530 [APP/0] OUT [2016-03-01 06:19:22,615]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:49:22.62+0530 [APP/0] OUT [2016-03-01 06:19:22,624]
INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} -
WSO2 Carbon started in 36 sec
2016-03-01T11:49:23.04+0530 [APP/0] OUT [2016-03-01 06:19:23,042]
INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console
URL : https://10.254.0.2:9443/carbon/


How can I make this work? What are your suggestions. Please help.

Best regards,
Nanduni.


Nanduni Nimalsiri
 

Hi all,

I am trying to deploy a docker image in Cloud Foundry. This specific image is to run WSO2 Data Services Server. I checked its functionality by running it as docker run ..., and it works perfectly fine. What I want is to run this image in Cloud Foundry.
When I use the command,
cf push dss -o isim/wso2dss, it finally gives the following error message.
"'FAILED Start app timeout
TIP: Application must be listening on the right port. Instead of hard coding the port, use the $PORT environment variable.'.

Then I looked for cf logs dss --recent, where I got the following report.

2016-03-01T11:25:18.97+0530 [APP/0] OUT [2016-03-01 05:55:18,979] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:25:19.00+0530 [APP/0] OUT [2016-03-01 05:55:19,007] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:25:20.80+0530 [APP/0] OUT [2016-03-01 05:55:20,805] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:25:21.17+0530 [APP/0] OUT [2016-03-01 05:55:21,174] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-01T11:25:21.96+0530 [APP/0] OUT [2016-03-01 05:55:21,966] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:25:22.03+0530 [APP/0] OUT [2016-03-01 05:55:22,035] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:25:22.04+0530 [APP/0] OUT [2016-03-01 05:55:22,037] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 38 sec
2016-03-01T11:25:22.47+0530 [APP/0] OUT [2016-03-01 05:55:22,474] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:25:42.70+0530 [CELL/0] ERR Timed out after 1m0s: health check never passed.
2016-03-01T11:25:42.71+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:25:42.91+0530 [APP/0] OUT Exit status 255
2016-03-01T11:25:42.94+0530 [API/0] OUT App instance exited with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload: {"instance"=>"6e7a7b6b-e3fa-45e7-4c63-9e0a958eeead", "index"=>0, "reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2 error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2 error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>5, "crash_timestamp"=>1456811742921582038, "version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}
2016-03-01T11:28:06.21+0530 [CELL/0] OUT Creating container
2016-03-01T11:28:12.90+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:28:12.90+0530 [CELL/0] OUT Starting health monitoring of container
2016-03-01T11:28:13.06+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:28:13.06+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:28:20.00+0530 [APP/0] OUT [2016-03-01 05:58:20,006] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-01T11:28:20.00+0530 [APP/0] OUT [2016-03-01 05:58:20,007] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:28:20.00+0530 [APP/0] OUT [2016-03-01 05:58:20,007] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,008] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,008] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,009] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,009] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-01T11:28:20.01+0530 [APP/0] OUT [2016-03-01 05:58:20,009] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-01T11:28:20.20+0530 [APP/0] OUT [2016-03-01 05:58:20,205] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-01T11:28:20.20+0530 [APP/0] OUT [2016-03-01 05:58:20,206] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-01T11:28:20.20+0530 [APP/0] OUT [2016-03-01 05:58:20,206] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-01T11:28:20.24+0530 [APP/0] OUT [2016-03-01 05:58:20,245] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-01T11:28:25.09+0530 [APP/0] OUT [2016-03-01 05:58:25,097] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 277ms
2016-03-01T11:28:25.98+0530 [APP/0] OUT [2016-03-01 05:58:25,985] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-01T11:28:27.41+0530 [APP/0] OUT [2016-03-01 05:58:27,411] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-01T11:28:39.34+0530 [APP/0] OUT [2016-03-01 05:58:39,343] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:28:40.95+0530 [APP/0] OUT [2016-03-01 05:58:40,956] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:28:40.95+0530 [APP/0] OUT [2016-03-01 05:58:40,957] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:28:45.25+0530 [APP/0] OUT [2016-03-01 05:58:45,254] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:28:45.45+0530 [APP/0] OUT [2016-03-01 05:58:45,458] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-01T11:28:45.48+0530 [APP/0] OUT [2016-03-01 05:58:45,486] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-01T11:28:46.52+0530 [APP/0] OUT [2016-03-01 05:58:46,524] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-01T11:28:46.52+0530 [APP/0] OUT [2016-03-01 05:58:46,528] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-01T11:28:46.56+0530 [APP/0] OUT [2016-03-01 05:58:46,559] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-01T11:28:46.59+0530 [APP/0] OUT [2016-03-01 05:58:46,590] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-01T11:28:46.75+0530 [APP/0] OUT [2016-03-01 05:58:46,758] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:28:46.88+0530 [APP/0] OUT [2016-03-01 05:58:46,882] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:28:47.28+0530 [APP/0] OUT [2016-03-01 05:58:47,280] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:28:47.30+0530 [APP/0] OUT [2016-03-01 05:58:47,307] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:28:48.60+0530 [APP/0] OUT [2016-03-01 05:58:48,600] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:28:49.01+0530 [APP/0] OUT [2016-03-01 05:58:49,014] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-01T11:28:49.84+0530 [APP/0] OUT [2016-03-01 05:58:49,846] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:28:49.89+0530 [APP/0] OUT [2016-03-01 05:58:49,895] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:28:49.89+0530 [APP/0] OUT [2016-03-01 05:58:49,897] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 36 sec
2016-03-01T11:28:50.36+0530 [APP/0] OUT [2016-03-01 05:58:50,360] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:29:13.64+0530 [CELL/0] ERR Timed out after 1m0s: health check never passed.
2016-03-01T11:29:13.66+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:29:13.85+0530 [APP/0] OUT Exit status 255
2016-03-01T11:29:13.88+0530 [API/0] OUT App instance exited with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload: {"instance"=>"56cee7b0-cd3d-46e6-665a-de09569d1447", "index"=>0, "reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2 error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2 error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>6, "crash_timestamp"=>1456811953861155081, "version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}
2016-03-01T11:33:36.60+0530 [CELL/0] OUT Creating container
2016-03-01T11:33:43.40+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:33:43.40+0530 [CELL/0] OUT Starting health monitoring of container
2016-03-01T11:33:43.56+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:33:43.56+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:33:52.15+0530 [APP/0] OUT [2016-03-01 06:03:52,158] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,159] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,159] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,159] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,160] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,160] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,161] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-01T11:33:52.16+0530 [APP/0] OUT [2016-03-01 06:03:52,161] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-01T11:33:52.36+0530 [APP/0] OUT [2016-03-01 06:03:52,360] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-01T11:33:52.36+0530 [APP/0] OUT [2016-03-01 06:03:52,360] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-01T11:33:52.36+0530 [APP/0] OUT [2016-03-01 06:03:52,360] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-01T11:33:52.40+0530 [APP/0] OUT [2016-03-01 06:03:52,401] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-01T11:33:58.60+0530 [APP/0] OUT [2016-03-01 06:03:58,599] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 345ms
2016-03-01T11:34:00.01+0530 [APP/0] OUT [2016-03-01 06:04:00,012] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-01T11:34:02.94+0530 [APP/0] OUT [2016-03-01 06:04:02,938] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-01T11:34:17.32+0530 [APP/0] OUT [2016-03-01 06:04:17,323] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:34:18.73+0530 [APP/0] OUT [2016-03-01 06:04:18,730] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:34:18.73+0530 [APP/0] OUT [2016-03-01 06:04:18,731] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:34:23.40+0530 [APP/0] OUT [2016-03-01 06:04:23,406] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:34:23.67+0530 [APP/0] OUT [2016-03-01 06:04:23,667] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-01T11:34:23.72+0530 [APP/0] OUT [2016-03-01 06:04:23,724] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-01T11:34:24.73+0530 [APP/0] OUT [2016-03-01 06:04:24,733] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-01T11:34:24.73+0530 [APP/0] OUT [2016-03-01 06:04:24,734] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-01T11:34:24.76+0530 [APP/0] OUT [2016-03-01 06:04:24,759] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-01T11:34:24.78+0530 [APP/0] OUT [2016-03-01 06:04:24,783] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-01T11:34:25.04+0530 [APP/0] OUT [2016-03-01 06:04:25,040] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:34:25.15+0530 [APP/0] OUT [2016-03-01 06:04:25,155] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:34:25.47+0530 [APP/0] OUT [2016-03-01 06:04:25,469] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:34:25.54+0530 [APP/0] OUT [2016-03-01 06:04:25,538] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:34:26.71+0530 [APP/0] OUT [2016-03-01 06:04:26,659] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:34:27.46+0530 [APP/0] OUT [2016-03-01 06:04:27,460] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-01T11:34:28.73+0530 [APP/0] OUT [2016-03-01 06:04:28,732] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,775] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,776] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 44 sec
2016-03-01T11:34:29.25+0530 [APP/0] OUT [2016-03-01 06:04:29,254] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:34:43.91+0530 [CELL/0] ERR Timed out after 1m0s: health check never passed.
2016-03-01T11:34:43.93+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:34:44.13+0530 [APP/0] OUT Exit status 255
2016-03-01T11:34:44.18+0530 [API/0] OUT App instance exited with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload: {"instance"=>"700b9b02-4694-4406-498c-40b1082e1a54", "index"=>0, "reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2 error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2 error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>7, "crash_timestamp"=>1456812284143594322, "version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}


The error it displayed was "ERR Timed out after 1m0s: health check never passed". Therefore I thought to run the image without health check. Then it displays me the message that the app has started and it is running.
#0 running 2016-03-01 11:48:45 AM 0.7% 632.5M of 1G 31.6M of 1G

But when I access the app in the browser, it gives me the error, "ERR_CONNECTION_TIMED_OUT"
I looked for logs again. It is as follows.

2016-03-01T11:34:28.73+0530 [APP/0] OUT [2016-03-01 06:04:28,732] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,775] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:34:28.77+0530 [APP/0] OUT [2016-03-01 06:04:28,776] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 44 sec
2016-03-01T11:34:29.25+0530 [APP/0] OUT [2016-03-01 06:04:29,254] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:34:43.91+0530 [CELL/0] ERR Timed out after 1m0s: health check never passed.
2016-03-01T11:34:43.93+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:34:44.13+0530 [APP/0] OUT Exit status 255
2016-03-01T11:34:44.18+0530 [API/0] OUT App instance exited with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 payload: {"instance"=>"700b9b02-4694-4406-498c-40b1082e1a54", "index"=>0, "reason"=>"CRASHED", "exit_description"=>"2 error(s) occurred:\n\n* 2 error(s) occurred:\n\n* Exited with status 1\n* Exited with status 1\n* 2 error(s) occurred:\n\n* cancelled\n* cancelled", "crash_count"=>7, "crash_timestamp"=>1456812284143594322, "version"=>"a4d8968b-e6d5-49e7-93d5-209c81b3b153"}
2016-03-01T11:42:57.39+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss", "health_check_type"=>"none", "diego"=>true, "docker_image"=>"isim/wso2dss"})
2016-03-01T11:42:57.84+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-01T11:42:59.51+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-01T11:42:59.55+0530 [CELL/0] OUT Creating container
2016-03-01T11:43:06.43+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:43:06.62+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:43:06.62+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,981] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,982] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,982] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,982] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,983] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,983] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,983] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-01T11:43:12.98+0530 [APP/0] OUT [2016-03-01 06:13:12,984] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-01T11:43:13.20+0530 [APP/0] OUT [2016-03-01 06:13:13,206] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-01T11:43:13.20+0530 [APP/0] OUT [2016-03-01 06:13:13,207] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-01T11:43:13.20+0530 [APP/0] OUT [2016-03-01 06:13:13,207] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-01T11:43:13.24+0530 [APP/0] OUT [2016-03-01 06:13:13,237] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-01T11:43:17.08+0530 [APP/0] OUT [2016-03-01 06:13:17,086] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 237ms
2016-03-01T11:43:17.81+0530 [APP/0] OUT [2016-03-01 06:13:17,818] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-01T11:43:18.90+0530 [APP/0] OUT [2016-03-01 06:13:18,896] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-01T11:43:29.02+0530 [APP/0] OUT [2016-03-01 06:13:29,019] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:43:30.33+0530 [APP/0] OUT [2016-03-01 06:13:30,335] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:43:30.33+0530 [APP/0] OUT [2016-03-01 06:13:30,335] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:43:33.60+0530 [APP/0] OUT [2016-03-01 06:13:33,600] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:43:33.70+0530 [APP/0] OUT [2016-03-01 06:13:33,704] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-01T11:43:33.73+0530 [APP/0] OUT [2016-03-01 06:13:33,731] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-01T11:43:35.03+0530 [APP/0] OUT [2016-03-01 06:13:35,030] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-01T11:43:35.03+0530 [APP/0] OUT [2016-03-01 06:13:35,031] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-01T11:43:35.06+0530 [APP/0] OUT [2016-03-01 06:13:35,064] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-01T11:43:35.09+0530 [APP/0] OUT [2016-03-01 06:13:35,094] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-01T11:43:35.22+0530 [APP/0] OUT [2016-03-01 06:13:35,222] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:43:35.37+0530 [APP/0] OUT [2016-03-01 06:13:35,371] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:43:35.68+0530 [APP/0] OUT [2016-03-01 06:13:35,683] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:43:35.71+0530 [APP/0] OUT [2016-03-01 06:13:35,715] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:43:36.92+0530 [APP/0] OUT [2016-03-01 06:13:36,926] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:43:37.10+0530 [APP/0] OUT [2016-03-01 06:13:37,107] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-01T11:43:37.82+0530 [APP/0] OUT [2016-03-01 06:13:37,821] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:43:37.89+0530 [APP/0] OUT [2016-03-01 06:13:37,890] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:43:37.89+0530 [APP/0] OUT [2016-03-01 06:13:37,892] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 30 sec
2016-03-01T11:43:38.35+0530 [APP/0] OUT [2016-03-01 06:13:38,358] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/
2016-03-01T11:43:53.44+0530 [RTR/0] OUT dss.local.micropcf.io - [01/03/2016:06:13:52 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34154 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:c870633f-4dbe-4e4f-73ea-d63b247d0054 response_time:0.539003843 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:43:53.85+0530 [RTR/0] OUT dss.local.micropcf.io - [01/03/2016:06:13:53 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34154 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:d0cc5ff1-ccd4-4e83-75f2-6a976f38f0af response_time:0.012464457 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:48:34.88+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"name"=>"dss", "health_check_type"=>"none", "diego"=>true, "docker_image"=>"isim/wso2dss"})
2016-03-01T11:48:35.21+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STOPPED"})
2016-03-01T11:48:35.22+0530 [CELL/0] OUT Exit status 0
2016-03-01T11:48:35.42+0530 [APP/0] OUT Exit status 255
2016-03-01T11:48:36.38+0530 [API/0] OUT Updated app with guid 4001c9fd-ff63-40a5-b3f5-98dc26d266c6 ({"state"=>"STARTED"})
2016-03-01T11:48:36.41+0530 [CELL/0] OUT Creating container
2016-03-01T11:48:45.13+0530 [CELL/0] OUT Successfully created container
2016-03-01T11:48:45.30+0530 [APP/0] OUT JAVA_HOME environment variable is set to /usr/lib/jvm/java-7-oracle/
2016-03-01T11:48:45.30+0530 [APP/0] OUT CARBON_HOME environment variable is set to /opt/wso2dss-3.5.0
2016-03-01T11:48:51.46+0530 [APP/0] OUT [2016-03-01 06:18:51,468] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Linux 3.19.0-49-generic, amd64
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /usr/lib/jvm/java-7-oracle/jre
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_80
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,469] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.80-b11,Oracle Corporation
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,470] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /opt/wso2dss-3.5.0
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,470] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /opt/wso2dss-3.5.0/tmp
2016-03-01T11:48:51.47+0530 [APP/0] OUT [2016-03-01 06:18:51,470] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : root, en-US, Etc/UTC
2016-03-01T11:48:51.74+0530 [APP/0] OUT [2016-03-01 06:18:51,741] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
2016-03-01T11:48:51.74+0530 [APP/0] OUT [2016-03-01 06:18:51,741] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Swap Memory size (MB): 1174 of the system is below the recommended minimum size :2047
2016-03-01T11:48:51.74+0530 [APP/0] OUT [2016-03-01 06:18:51,742] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Maximum free Disk Space (MB): 221 of the system is below the recommended minimum size :1024
2016-03-01T11:48:51.78+0530 [APP/0] OUT [2016-03-01 06:18:51,778] INFO {org.wso2.carbon.dataservices.google.tokengen.servlet.internal.GoogleTokenGenDSComponent} - Activating GoogleTokengen DS component
2016-03-01T11:48:56.55+0530 [APP/0] OUT [2016-03-01 06:18:56,555] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 583ms
2016-03-01T11:48:57.47+0530 [APP/0] OUT [2016-03-01 06:18:57,473] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
2016-03-01T11:48:58.18+0530 [RTR/0] OUT dss.local.micropcf.io - [01/03/2016:06:18:58 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34517 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:f3b88d12-2e2e-48b8-7c2e-5a4912eed567 response_time:0.015918547 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:48:58.78+0530 [RTR/0] OUT dss.local.micropcf.io - [01/03/2016:06:18:58 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34517 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:4e424517-cb6b-4fb3-6fb7-da22934c1022 response_time:0.022641136 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:48:59.16+0530 [APP/0] OUT [2016-03-01 06:18:59,162] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
2016-03-01T11:49:03.89+0530 [RTR/0] OUT dss.local.micropcf.io - [01/03/2016:06:19:03 +0000] "GET / HTTP/1.1" 502 0 67 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34517 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:cb0d3072-0e7b-4e4e-798e-2c14c81f5b2b response_time:0.018722143 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:49:04.36+0530 [RTR/0] OUT dss.local.micropcf.io - [01/03/2016:06:19:04 +0000] "GET /favicon.ico HTTP/1.1" 502 0 67 "http://dss.local.micropcf.io/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" 192.168.11.1:34517 x_forwarded_for:"-" x_forwarded_proto:"-" vcap_request_id:797f0afb-deaf-48eb-54ce-4fdcf8fbd3c4 response_time:0.004437919 app_id:4001c9fd-ff63-40a5-b3f5-98dc26d266c6
2016-03-01T11:49:10.40+0530 [APP/0] OUT [2016-03-01 06:19:10,400] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
2016-03-01T11:49:12.22+0530 [APP/0] OUT [2016-03-01 06:19:12,219] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:49:12.23+0530 [APP/0] OUT [2016-03-01 06:19:12,229] INFO {org.wso2.carbon.identity.user.store.configuration.deployer.UserStoreConfigurationDeployer} - User Store Configuration Deployer initiated.
2016-03-01T11:49:17.07+0530 [APP/0] OUT [2016-03-01 06:19:17,071] INFO {org.wso2.carbon.core.init.CarbonServerManager} - Repository : /opt/wso2dss-3.5.0/repository/deployment/server/
2016-03-01T11:49:17.23+0530 [APP/0] OUT [2016-03-01 06:19:17,229] INFO {org.wso2.carbon.core.multitenancy.eager.TenantLoadingConfig} - Using tenant lazy loading policy...
2016-03-01T11:49:17.27+0530 [APP/0] OUT [2016-03-01 06:19:17,275] INFO {org.wso2.carbon.core.internal.permission.update.PermissionUpdater} - Permission cache updated for tenant -1234
2016-03-01T11:49:18.51+0530 [APP/0] OUT [2016-03-01 06:19:18,518] INFO {org.wso2.carbon.core.transports.http.HttpsTransportListener} - HTTPS port : 9443
2016-03-01T11:49:18.52+0530 [APP/0] OUT [2016-03-01 06:19:18,519] INFO {org.wso2.carbon.core.transports.http.HttpTransportListener} - HTTP port : 9763
2016-03-01T11:49:18.55+0530 [APP/0] OUT [2016-03-01 06:19:18,558] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: echo {super-tenant}
2016-03-01T11:49:18.59+0530 [APP/0] OUT [2016-03-01 06:19:18,593] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: Version {super-tenant}
2016-03-01T11:49:18.79+0530 [APP/0] OUT [2016-03-01 06:19:18,791] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/STRATOS_ROOT].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/STRATOS_ROOT]
2016-03-01T11:49:18.98+0530 [APP/0] OUT [2016-03-01 06:19:18,986] INFO {org.wso2.carbon.webapp.mgt.TomcatGenericWebappsDeployer} - Deployed webapp: StandardEngine[Catalina].StandardHost[localhost].StandardContext[/odata].File[/opt/wso2dss-3.5.0/repository/deployment/server/webapps/odata.war]
2016-03-01T11:49:19.33+0530 [APP/0] OUT [2016-03-01 06:19:19,334] INFO {org.wso2.carbon.core.deployment.DeploymentInterceptor} - Deploying Axis2 service: samples/RDBMSSample {super-tenant}
2016-03-01T11:49:19.38+0530 [APP/0] OUT [2016-03-01 06:19:19,386] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:49:20.97+0530 [APP/0] OUT [2016-03-01 06:19:20,971] INFO {org.apache.tomcat.util.net.NioSelectorPool} - Using a shared selector for servlet write/read
2016-03-01T11:49:21.28+0530 [APP/0] OUT [2016-03-01 06:19:21,269] INFO {org.wso2.carbon.ntask.core.service.impl.TaskServiceImpl} - Task service starting in STANDALONE mode...
2016-03-01T11:49:22.54+0530 [APP/0] OUT [2016-03-01 06:19:22,544] INFO {org.wso2.carbon.core.init.JMXServerManager} - JMX Service URL : service:jmx:rmi://localhost:11111/jndi/rmi://localhost:9999/jmxrmi
2016-03-01T11:49:22.61+0530 [APP/0] OUT [2016-03-01 06:19:22,615] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - Server : WSO2 Data Services Server-3.5.0
2016-03-01T11:49:22.62+0530 [APP/0] OUT [2016-03-01 06:19:22,624] INFO {org.wso2.carbon.core.internal.StartupFinalizerServiceComponent} - WSO2 Carbon started in 36 sec
2016-03-01T11:49:23.04+0530 [APP/0] OUT [2016-03-01 06:19:23,042] INFO {org.wso2.carbon.ui.internal.CarbonUIServiceComponent} - Mgt Console URL : https://10.254.0.2:9443/carbon/


How can I make this work? What are your suggestions. Please help.

Best regards,
Nanduni.