在哪里可以看到 Openshift 的控制台日志?
Where to see console log in Openshift?
最近,我已将 JSP 项目部署到 Openshift 服务器中。现在我的愿望是看到控制台日志。
假设,如果我将 System.out.println("Message");
打印到我的 JSP 项目中,我如何看到该消息打印到 Openshift 服务器的控制台日志中?
已编辑:
DL is deprecated, please use Fiddle
rajendra @ http://code-programmersplace.rhcloud.com/
(uuid: 54d19a5be0b8cd9bf9000082)
-------------------------------------------------
Domain: programmersplace
Created: Feb 04 9:34 AM
Gears: 1 (defaults to small)
Git URL: ssh://54d19a5be0b8cd9bf9000082@code-programmersplace.rhcloud.com/~/gi
t/rajendra.git/
SSH: 54d19a5be0b8cd9bf9000082@code-programmersplace.rhcloud.com
Deployment: auto (on git push)
jbossews-2.0 (Tomcat 7 (JBoss EWS 2.0))
---------------------------------------
Gears: 1 small
You have access to 1 application.
C:\Users\rajendra>
您需要做的第一件事是通过 SSH 连接到您在 OpenShift 上的应用程序。如果您的应用名称是 awesome
,运行 以下命令:
rhc ssh -a awesome
如果您忘记了应用程序的名称,请执行 rhc apps
以查看您当前的应用程序。查看类似于 hereisthename @ http://...
或 .../~/git/hereisthename.git/
.
的行
通过 SSH 连接后,您可以使用 tail
命令查看日志:
Tomcat 7 (JBoss EWS 2.0)
tail -f -n 100 app-root/logs/jbossews.log
JBoss 应用程序服务器 7
tail -f -n 100 app-root/logs/jbossas.log
需要 OpenShift 客户端工具。参见 Installing the OpenShift Client Tools. See also Getting Started with OpenShift Online。
相关:rhc ssh [No system SSH available] error
最近,我已将 JSP 项目部署到 Openshift 服务器中。现在我的愿望是看到控制台日志。
假设,如果我将 System.out.println("Message");
打印到我的 JSP 项目中,我如何看到该消息打印到 Openshift 服务器的控制台日志中?
已编辑:
DL is deprecated, please use Fiddle
rajendra @ http://code-programmersplace.rhcloud.com/
(uuid: 54d19a5be0b8cd9bf9000082)
-------------------------------------------------
Domain: programmersplace
Created: Feb 04 9:34 AM
Gears: 1 (defaults to small)
Git URL: ssh://54d19a5be0b8cd9bf9000082@code-programmersplace.rhcloud.com/~/gi
t/rajendra.git/
SSH: 54d19a5be0b8cd9bf9000082@code-programmersplace.rhcloud.com
Deployment: auto (on git push)
jbossews-2.0 (Tomcat 7 (JBoss EWS 2.0))
---------------------------------------
Gears: 1 small
You have access to 1 application.
C:\Users\rajendra>
您需要做的第一件事是通过 SSH 连接到您在 OpenShift 上的应用程序。如果您的应用名称是 awesome
,运行 以下命令:
rhc ssh -a awesome
如果您忘记了应用程序的名称,请执行 rhc apps
以查看您当前的应用程序。查看类似于 hereisthename @ http://...
或 .../~/git/hereisthename.git/
.
通过 SSH 连接后,您可以使用 tail
命令查看日志:
Tomcat 7 (JBoss EWS 2.0)
tail -f -n 100 app-root/logs/jbossews.log
JBoss 应用程序服务器 7
tail -f -n 100 app-root/logs/jbossas.log
需要 OpenShift 客户端工具。参见 Installing the OpenShift Client Tools. See also Getting Started with OpenShift Online。
相关:rhc ssh [No system SSH available] error