cola
cola

Reputation: 12466

How can i install/configure or set up tomcat 7 manually?

I downloaded apache-tomcat-7.0.20.tar.gz from here => http://tomcat.apache.org/download-70.cgi

Now how can i install/configure it manually to run springframework project with eclipse?

Upvotes: 2

Views: 6257

Answers (2)

bpgergo
bpgergo

Reputation: 16037

You do not need to install Tomcat. Just unpack it and start with the startap.sh or (startup.bat on windows) which is in the bin directory.

Also you can install it as a windows service or unix daemon, refer to the docs: http://tomcat.apache.org/tomcat-7.0-doc/setup.html

Upvotes: 2

Andrei Zagorneanu
Andrei Zagorneanu

Reputation: 221

You have to register your Tomcat server in Eclipse (Window -> Preferences and then select Server -> Runtime Environments). After this you will be able to deploy your projects directly from Eclipse.

Upvotes: 4

Related Questions