最近,我已将JSP项目部署到Openshift服务器中。现在,我希望看到控制台日志。
假设,如果我打印System.out.println("Message");到我的JSP项目中,如何在Openshift服务器中看到该消息打印到控制台日志中?
System.out.println("Message");
编辑:
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,请运行以下命令:
awesome
rhc ssh -a awesome
如果您忘记了应用程序的名称,请执行rhc apps以查看您当前的应用程序。看到与hereisthename @ http://...或类似的行.../~/git/hereisthename.git/。
rhc apps
hereisthename @ http://...
.../~/git/hereisthename.git/
通过SSH连接后,您可以使用以下tail命令查看日志:
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