• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

TomCAT plesk 9.2.1

hi

Yes, there are a solution to run your tomcat application in the main location. the solution consists in:

1º Rename your tomcat application to ROOT.war and deploy it in plesk.
2º you must config mod_jk connector manualy. you have to create a vhost.conf file in your conf directorty in your domain with this:

<IfModule mod_jk.c>
JkMount / ajp13
JkMount /* ajp13
</IfModule>


3º Plesk must be detect the new manual configuration. This his has been made in plesk linux with the command /usr/local/psa/admin/sbin/websrvmng -v -a
 
hi

Yes, there are a solution to run your tomcat application in the main location. the solution consists in:

1º Rename your tomcat application to ROOT.war and deploy it in plesk.
2º you must config mod_jk connector manualy. you have to create a vhost.conf file in your conf directorty in your domain with this:

<IfModule mod_jk.c>
JkMount / ajp13
JkMount /* ajp13
</IfModule>


3º Plesk must be detect the new manual configuration. This his has been made in plesk linux with the command /usr/local/psa/admin/sbin/websrvmng -v -a

Thanks for you replay , as I right you understand this tutorial for Plesk Linux ? Or in windows I can to deploy ROOT.war and I can run my Java app in the main site locatian like http://domain.com/
 
It didnt worked out any other way out. Application works fine with :9080 but not in domain name. Tried all possible steps but all are in vain.
 
Finally worked! SOLVED

hi

Yes, there are a solution to run your tomcat application in the main location. the solution consists in:

1º Rename your tomcat application to ROOT.war and deploy it in plesk.
2º you must config mod_jk connector manualy. you have to create a vhost.conf file in your conf directorty in your domain with this:

<IfModule mod_jk.c>
JkMount / ajp13
JkMount /* ajp13
</IfModule>


3º Plesk must be detect the new manual configuration. This his has been made in plesk linux with the command /usr/local/psa/admin/sbin/websrvmng -v -a


Some other things to make it work :

1. Delete the default ROOT app shipped with Tomcat;

2. Do this command /usr/local/psa/admin/sbin/httpdmng --reconfigure-all , instead of the old one.
 
Some other things to make it work :

1. Delete the default ROOT app shipped with Tomcat;

2. Do this command /usr/local/psa/admin/sbin/httpdmng --reconfigure-all , instead of the old one.


Directory to put the vhost.conf file is :

/var/www/vhosts/system/[your virtual host]/conf/
 
Back
Top