This how-to will show you how to install Tomcat 7.x and JDK 7.x (Java Development Kit) on a CentOS VPS.
You could get one of our Java Hosting plans and have everything already installed and configured but if you want to do it yourself just follow the tutorial below.
The first thing you will need to do is create a file called .htpasswd (it doesn’t have to be named that way). The following command creates a new .htpasswd file and stores a record in it for user tom.
htpasswd -bc /var/www/yourdomain.com/.htpasswd tom password
To create another user:
htpasswd -b /var/www/yourdomain.com/.htpasswd john password
MySQL has two primary storage engines: MyISAM and InnoDB.
Each has its own performance characteristics and considerations but generally MyISAM is good for read-intensive data and InnoDB is good for transactional data.
It is a python script intended to be run by GNU/Linux system administrators and users to help thwart SSH server attacks which are also known as dictionary based attacks and brute force attacks. It has the ability to run as a daemon and it can automatically block attackers and prevent them from gaining access to your server.
IMAP or Internet Message Access Protocol is one of the two most commonly used protocols for e-mail retrieval. This is a step-by-step tutorial on how to configure IMAP to use SSL encryption for secure communication on port 993 (by default IMAP uses port 143).
Nginx is a free, open-source, high-performance HTTP server which unlike his ‘friends’, it does not rely on threaded handling of the requests but instead it uses a much more scalable event driven (asynchronous) architecture. This uses a very small and predictable amount of memory under heavy load. Nginx in combination with the simple and very robust FastCGI Process Manager for PHP (PHP-FPM) and the world most popular database server MySQL can give you a lot of power and performance while still using a small memory footprint.
The following article looks at how to install and configure this stack on one of our Debian based VPSes.