Skip to content

Debugging

Imaobong Eyoma edited this page Jun 12, 2015 · 1 revision

Introduction

  • To check whether Tomcat Server is up and running
    • On you browser search bar, enter localhost:8080 and on loading the following window should appear

  • To check successful deployment of your webapp. Enter localhost:8080/quickforms in your browser search bar and you will see the following. In the following example Segcourse is an example webapp name

Or else you will see

  • Possible solution the above unsuccessful connection
    • Check your Tomcat 8.0\conf\context.xml file. In that make sure you have given correct username and password . And also make sure the url is correct.
<Resource driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver" maxActive="15" maxIdle="5"
maxWait="5000" name="jdbc/segcourse" password="segcourse" type="javax.sql.DataSource"
url="jdbc:sqlserver://137.122.93.142:1433;autoReconnect=true" username="segcourse"/>
  • Application specific errors can be found in the log file in the apache/bin directory. The name of the application log file will be 'app'log.log
Clone this wiki locally