最近,我已将我的JSP项目部署到Openshift服务器中。现在我希望看到控制台日志。
假设,如果我将System.out.println("Message");
打印到我的JSP项目中,如何在Openshift服务器中看到该消息打印到Console日志中?
编辑:
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:\用户\拉金德拉>
答案 0 :(得分:10)
您需要的第一件事是通过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 Application Server 7
tail -f -n 100 app-root/logs/jbossas.log
需要OpenShift客户端工具。见Installing the OpenShift Client Tools。另请参阅Getting Started with OpenShift Online。