Reputation: 129
I just deployed my Java + Mysql applications to Openshift V3 platform on I noticed a few things in the logfiles:
The timestamps are not EST even though the server for my account is us-east-x. I saw 4 hours difference, but today is 3 hours ahead EST. So my question: how do I set the time for my POD to be my local time? Otherwise, the log (with unknown timestamps) will be little use.
On V3, do I have ways of accessing logfiles other than viewLog for PODs on the Openshift web console? I found the viewLog on console is not a practical tool: a) it gives only 5000 lines of log, and (b) it lacks basic search/find functionality.
Upvotes: 0
Views: 1328
Reputation: 2093
oc env [dc] TZ=Europe/Vienna
).Upvotes: 1