Install Coldfusion 8 Multiserver on Debian 5.0 Lenny with Apache 2
This article describes, how to install Adobe Coldfusion 8 with Multiserver configuration. You can use this configuration for an ISP like coldfusion setup. Each instance/virtual host will have its own Coldfusion administrator with custom settings. 1. Prerequirements: * Apache 2 is installed and running correctly. * libstdc++5 is installed. aptitude install libstdc++5 * You have […]
Create an iCalendar server with debian 5.0 lenny
First you need an working apache2 webserver with mod „dav_fs“. If you want iCal over SSL you need a configurated „mod_ssl“ on your apache2 webserver. a2enmod dav_fs Next step is the apache configuration: Insert this in your „virtualhost“ configuration. Alias /iCalendar /your/path/to/iCalendar <location /iCalendar> DAV On </location> Now you can create a new calendar with […]
New blog layout
Today i thought my website need a new layout. Heute dachte ich meine Webseite braucht ein neues Layout. It is a small modified version of „Auroral Theme„. Es ist eine etwas modifizierte Version des „Auroral Theme„. I think i need some new useless addons for wordpress … 🙂 Ich denke ich brauche noch ein paar […]
Greylisting with sqlgrey, postfix and mysql on Debian Lenny
This article describes howto setup sqlgrey with postfix and mysql on Debian Lenny. The normal graylisting with postgrey store the whitelist in a berkeley database which needs to be replicated on a mailserver cluster. With sqlgrey you can do that replication with a mysql database. First create a Database „sqlgrey“ with an user „sqlgrey“ on […]
Authenticate ejabberd with an mysql database
This is a small script to authenticate Jabber users with an external MySQL database. You can free define table and columns for username and password in the settings part of the script. The password should be stored with the ENCRYPT() function in the database. First edit the Jabber configuration file (\etc\ejabberd\ejabberd.conf) and change the authentication […]
Install Subversion repository on a nfs share
This howto describes how to install subversion on debian with the repository on a mounted nfs share. 1. Installation aptitude install subversion libapache2-svn 2. Create the repository mkdir /mnt/nfsshare/svn/ svnadmin create –fs-type fsfs /mnt/nfsshare/svn/project1 The path /mnt/nfsshare is the mountpoint of the NFS share, please make sure you use the fsfs filesystem type for your […]
ELV EM 1000 energy meter on debian with cacti
This article describes how you can use the EM 1000 with an EM 1000-WZ energiemeter on debian and log the values with cacti.. First you need the „ftdi_sio“ kernel module. You need the „vendor“ and „product“ ID before you can use the module. lsusb Bus 005 Device 017: ID 0403:e0ef Future Technology Devices International, Ltd […]
Secure Apache 2 with mod-security 2 on Debian Lenny
This article describes how to install mod_security2 on Debian Lenny. It should work on Etch, too. On the http://www.modsecurity.org website there is a link to the mod_security2 pakets for Debian. (Community-Produced Binary packages) Note: You should check this website for the latest versions and change the example „wget“ commands in this howto. 1. Download the […]
Log Apache2 access log into a MySQL database on Debian Lenny
This article describes how you can log your apache access log entries into a MySQL database. You need a installed and configurated Apache2 webserver and MySQL server. Installation: On the webserver: aptitude install libapache2-mod-log-sql-mysql a2enmod unique_id On the database server: Create a new database „apachelogs“ and a user for this database. Configurate a virtual host: […]
Deploy Adobe Coldfusion 8 on Tomcat 6 in a virtual host environment
This article describes how to deploy the Adobe Coldfusion 8 server on Tomcat in a virtual hosts environment. Please read my Apache Tomcat 6 Article for the base setup. If you install the coldfusion server in seperate virtual hosts, each will have an own coldfusion administrator with own settings. 1. Download First download the coldfusion-801-lin.bin […]