Java Installation: ====================== I chose to install Sun’s Java 2 Platform, Standard Edition, which can be downloaded from http://java.sun.com/j2se/). I chose the J2SE v1.4.2 SDK Linux self-extracting binary file. Change to the directory where you downloaded the SDK and make the self-extracting binary executable: chmod +x j2sdk-1_4_2-linux-i586.bin Run the self-extracting binary: ./j2sdk-1_4_2-linux-i586.bin here should now [...]
Archive for the ‘Articles’ Category
Java/Tomcat Installation
Posted in Articles, INSTALLATION, SERVICES on January 10, 2009 | Leave a Comment »
Apache2 mod_fastcgi: Connect to External PHP via UNIX Socket or TCP/IP Port:
Posted in Apache, Articles, INSTALLATION, LINUX, Php on January 4, 2009 | Leave a Comment »
Apache2 mod_fastcgi: Connect to External PHP via UNIX Socket or TCP/IP Port ============================================== Required utilities: ======================= You can spawn FastCGI processes using a dispatcher script or using spawn-fcgi utility, which is used to spawn remote FastCGI processes. spawn-fcgi included with lighttpd web server. You can grab source code from lighttpd.net or simply install it using [...]
Top 10 Linux Virtualization Software:
Posted in Articles, LINUX, VPS on January 4, 2009 | Leave a Comment »
Top 10 Linux Virtualization Software: ===================================== Virtualization is the latest buzz word. You may wonder computers are getting cheaper every day, why should I care and why should I use virtualization? Virtualization is a broad term that refers to the abstraction of computer resources such as: 1. Platform Virtualization 2. Resource Virtualization 3. Storage Virtualization [...]
Preventing Brute Force Attacks
Posted in Articles, LINUX, SECURITY, VPS on January 1, 2009 | Leave a Comment »
Blocking and preventing brute force attacks is one of the main things you want to do on your web server to add a layer of security. –How the brute force attack works Hackers can try to get into your system using a few different methods. 1) Manual login attempts, they will try to type in [...]
Upgrading PostgreSQL to 8.1
Posted in Articles, Mysql, SCRIPT on December 31, 2008 | Leave a Comment »
Warning: ===== First, do it by your risk and IF you know what your doing AND IF you do really need and AND IF your customers do not use postgres on this server yet. DO NOT UPGRADE IT ON PRODUCTION SERVERS UNLESS YOU’RE SURE ABOUT DOING IT. THERE IS NO WAY TO GO BACK!!!! ALSO, [...]
How-To: Copy of incoming and outgoing mails of specific users sent to other user on Exim..
Posted in Articles, Cpanel, Exim on December 31, 2008 | Leave a Comment »
Outgoing email: ========= Turning on system_filter Just check if on exim.conf there should be a line: system_filter = /etc/antivirus.exim So, edit /etc/antivirus.exim. There should be a line on the top of this file: if not first_delivery then finish endif Ingoing email: ========= if $header_to contains “@yourdomain.com” or $header_cc contains “@yourdomain.com” or $header_bcc contains “@yourdomain.com” or [...]
Installing SVN
Posted in Articles, Cpanel, INSTALLATION on December 31, 2008 | Leave a Comment »
SVN is a version management tool “much like CVS”. It is used to develop many large sites online, amongst them LastFM (http://www.last.fm) and Flickr (http://www.flickr.com/). It has been in development for many years and there are a wide range of OS compatible versions available. In this example, we will show you how to install using [...]
Apache 2 / cPanel
Posted in Articles on December 31, 2008 | Leave a Comment »
In this article, you can find lot of information about Apache 2 / cPanel 11+, mainly how to change things on httpd.conf on the right way. FILE SCRIPTS: ========= /var/cpanel/userdata/USER/ store individual vhosts information /usr/local/apache/conf/httpd.conf main httpd.conf – do not edit it directly, as cPanel rebuilt it from templates /usr/local/cpanel/bin/build_apache_conf cPanel script to rebuild httpd.conf [...]