Error 1067 The Process Terminated Unexpectedly Apache Tomcat 6

Error 1067 The Process Terminated Unexpectedly Apache Tomcat 6 Error 1067 The Process Terminated Unexpectedly Apache Tomcat 6 and you are not able to start the tomcat service. Cannot start apache tomcat6 service because the process terminated unexpectedly, you will see this error if you have installed apache tomcat6 on Microsoft Windows 2003 server along …

Read more

How To Redirect A Domain For Free

Domain redirection is very common now a days and everyone need it because most companies own more than one domain names for their company. I would like to share a very simple and easy to under htaccess script that forward a whole domain to another domain name. There are few very simple steps involved to …

Read more

how to install Apache Tomcat 6 on Debian 5 (Lenny)

In my previous articles for installation and configuration of apache tomcat 6 I tried to focus on the configuration of this web server with other utilities like setting up apache tomcat with apache2, configuration of apache tomcat with virtual host and apcahe2. Today I like to share a very simple method that will show the steps of configuration of apache tomcat 6 on debian lenny with some java settings.

I hope that you have a working installation of Debian 5 (Lenny), and have enough knowledge to update and install new packages on the system. I also assume that you have a functional SSH connection and root access to your server. why would you look for  a functional SSH connection? because you can access the system using some connectivity software like putty to do the configurations.

Install a Java Implementation

You have to Make sure that your package repositories and installed programs are up to date by issuing the following commands:

apt-get update

apt-get upgrade –show-upgraded

Read more

5 – Best Web Servers of the World

A recent survey shows the most used web servers of the world and their market share in a tabular form. I got this survey from a website and thought that why not share it with you guys, just for knowledge sharing. Perhaps someone find this thing interesting and made a quick and easy decision while …

Read more

How to set Java heap space in Apache Tomcat?

If Java runs out of memory, the following error occurs: Exception in thread "main" java.lang.OutOfMemoryError: Java heap space This can have two reasons: Your Java application has a memory leak. There are tools like YourKit Java Profiler that help you to identify such leaks. Your Java application really needs a lot of memory (more than …

Read more

How to Install and Configure Apache-Tomcat 6 on Debian 5 LENNY with apache2

This article is a „how to“ to install the tomcat with apache 2. I will try to explain each and every step so that if anything goes wrong one can revert it or can easily figure out the problem and correct it.

Installing Java 6 runtime:

Please try to install sun JDK because there is a big difference between configurations of sun JDK and open JDK. Installation of sun JDK is given as under;

Sun JDK (non-free)

deb http://ftp.de.debian.org/debian/ lenny main non-free

deb-src http://ftp.de.debian.org/debian/ lenny main non-free

Please copy and paste the above lines and add in /etc/apt/sources.list

vi /etc/apt/sources.list

Please update the aptitude by using the under given command.

aptitude update

aptitude install sun-java6-jdk

Read more