DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • JMeter Plugin HTTP Simple Table Server (STS) In-Depth
  • Optimizing Database Connectivity: A Comparative Analysis of Tomcat JDBC vs. HikariCP
  • Deployment of Spring MVC App on a Local Tomcat Server
  • Java 21 Is a Major Step for Java: Non-Blocking IO and Upgraded ZGC

Trending

  • Implementing Secure API Gateways for Microservices Architecture
  • Rethinking Java CRUDs With Event Sourcing and CQRS Patterns
  • Implementing Observability in Distributed Systems Using OpenTelemetry
  • 5 Common Security Pitfalls in Serverless Architectures
  1. DZone
  2. Coding
  3. Languages
  4. Deploying A WAR File in EasyApache 4 and Tomcat (Experimental)

Deploying A WAR File in EasyApache 4 and Tomcat (Experimental)

A quick, step-by-step tutorial on how to work with EasyApache 4 and Tomcat to create and deploy a web application housed in a WAR file.

By 
Md Nasir Uddin Bhuiyan user avatar
Md Nasir Uddin Bhuiyan
·
Oct. 01, 18 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
18.5K Views

Join the DZone community and get the full member experience.

Join For Free

Recently EasyApache 4 started to provide Tomcat support on an experimental basis. After migrating from EasyApache 3 to EasyApache 4 it becomes very difficult and confusing for users to deploy and configure their web application (.war) in their VPS server. I also faced the same problem. Below are the short instructions on how I solved the problem.

First of all, you need to read below documents.

  • https://documentation.cpanel.net/display/EA4/Tomcat

  • https://httpd.apache.org/docs/current/mod/mod_proxy_ajp.html

Now follow the below instructions.

1) Build your web app - let's go with a .war file for example purposes. Rename it to ROOT.war.

2) In your VPS server go to the /home/user-name/ea-tomcat85/webapps location

3) Copy your ROOT.war file into the location (Step 2)

4) Go to /home/user-name/ea-tomcat85/conf file. There you should find a server.xml file.

5) Use the command vi server.xml to view the server.xml file. Find the Ajp/1.3 connector port. It should look something like this:

<Connector port="10001" protocol="AJP/1.3" redirectPort="10002"/>

Remember the port number is 10001.

6) Now go to this location: /etc/apache2/conf.d/userdata/std/2/user-name/your-domain-name/

Now create a file named custom.conf.

Write the below code:

<IfModule proxy_ajp_module>

ProxyPass "/" "ajp://127.0.0.1:HERE_YOUR_REMEMBERED_AJP_PORT/"

</IfModule>

Finally, save it.

This gives your website HTTP access.

7) Now got to the following location: /etc/apache2/conf.d/userdata/ssl/2/user-name/your-domain-name/

Create a file named custom.conf.

Write the below code:

<IfModule proxy_ajp_module>

ProxyPass "/" "ajp://127.0.0.1:HERE_YOUR_REMEMBERED_AJP_PORT/"

</IfModule>

Finally, save it.

This gives your server HTTPS access

8) Now you need to rebuild the HTTPD, so use the below command

/usr/local/cpanel/scripts/rebuildhttpdconf

And now restart the HTTPD by using the below command:

/usr/local/cpanel/scripts/restartsrv_httpd

Note: In case your website is not working yet, follow the below instructions.

Reboot your VPS server or do the same thing but in a new Tomcat location, which is /opt/cpanel/ea-tomcat85.

After doing everything, use the below command to start a Tomcat server manually:

/opt/cpanel/ea-tomcat85/bin/./startup.sh

If you need to shutdown Tomcat manually, use the below command:

/opt/cpanel/ea-tomcat85/bin/./shutdown.sh
Apache Tomcat WAR (file format)

Opinions expressed by DZone contributors are their own.

Related

  • JMeter Plugin HTTP Simple Table Server (STS) In-Depth
  • Optimizing Database Connectivity: A Comparative Analysis of Tomcat JDBC vs. HikariCP
  • Deployment of Spring MVC App on a Local Tomcat Server
  • Java 21 Is a Major Step for Java: Non-Blocking IO and Upgraded ZGC

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook