Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm able access the manager webapp of my tomcat server hosted back home. I'm able to deploy and undeploy webapps and test them. But I wanted to know, if there is a way to access the tomcat logs remotely in case of a error on the remote server.
Logback logging library (Log4j successor) has a module for that:
http://logback.qos.ch/access.html
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have fully working localhost website(with java server, react front, MySQL database).I already moved front on host, but I can not understand or find how to move java server on web host and run it. Can anyone explain it to me?
Create a war file of the java application using maven plugin and install tomcat on the host and then just copy the war file into the tomcat directory on the host. Here is tutorial on this.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have developed an web application in java using Apache tomcat server and MS sql database,its working fine in offline,i want to deploy it online,Apart from purchasing domain name,how to deploy it online,i dont have any public ip machine,i need third party,will third parties provide remote acess to tomcat and sql,if so how to configure mine there,consider it as small application,since its my first deployment please guide me
you could try openshift
It has no MSSql but it has PostgreSQL and MySQL
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
i have install mod_jk i want to disable access to tomcat directly using localhost:8080/webApp
.it should be only accessible through apache server using mod_jk module and user is also not able to see webApp in url.
You can comment out in server.xml file the Connector of type http.
This will make tomcat only listen on the ajp connector.
Regards
Philippe
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to find a hosting service for a small Java servlet (running on Tomcat, no database required). Any suggestions or anything I need to be careful about? Also: The only thing I need to upload to the hosting service is the .war file?
If its just a war then eatj is good.
Update:
In Feb, 2018 Amazon AWS is the best.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 14 years ago.
Improve this question
My application's context root is /foobar and I am running an exploded deployment with maven-jetty-plugin.
I need to dynamically remap requets for /images/* to /foobar/images/*, and I cannot remap my application's context root to /.
For weblogic I have a halfwit solution where I deploy an additional war containing a proxy to context root /images.
The problem is that I cannot get this to work with maven-jetty-plugin, because I dont see how it can deploy two apps.
Anyone know how to do this ?
Are you referring to <img> links? If so, it's a job for Apache's MOD_REWRITE
http://jiajia.eu/category/Maven.aspx