Articles by Falko Timme

Falko Timme

About Falko Timme

Falko Timme is an experienced Linux administrator and founder of Timme Hosting, a leading nginx business hosting company in Germany. He is one of the most active authors on HowtoForge since 2005 and one of the core developers of ISPConfig since 2000. He has also contributed to the O'Reilly book "Linux System Administration".

  • Setting Up Network RAID1 With DRBD On Debian Squeeze

    debian Author: Falko TimmeTags: , , Comments: 4

    Setting Up Network RAID1 With DRBD On Debian Squeeze This tutorial shows how to set up network RAID1 with the help of DRBD on two Debian Squeeze systems. DRBD stands for Distributed Replicated Block Device and allows you to mirror block devices over a network. This is useful for high-availability setups (like a HA NFS server) because if one node fails, all data is still available from the other node.

  • How To Speed Up Drupal 7.7 With Boost And nginx (Debian Squeeze)

    nginx Author: Falko TimmeTags: , , , Comments: 2

    How To Speed Up Drupal 7.7 With Boost And nginx (Debian Squeeze) This tutorial shows how you can speed up your Drupal 7.7 installation on a LAMP stack (Debian Squeeze) with the help of Boost and nginx. Boost provides static page caching for Drupal enabling a very significant performance and scalability boost for sites that receive mostly anonymous traffic. Boost makes sure that your logged-in users always get fresh content by not caching pages for logged-in users. In a first step I will show how to make your site faster by enabling Boost on a normal LAMP stack (Apache2, PHP, MySQL), and in a second step I explain how to make your site even faster by using nginx as a reverse proxy sitting in front of Apache and delivering the static HTML pages cached by Boost. nginx delivers static files a lot of faster than Apache and uses less memory/CPU.

  • Apache2 - mod_fcgid: HTTP request length exceeds MaxRequestLen

    apache Author: Falko TimmeTags: Comments: 11

    Error: Apache2 - mod_fcgid: HTTP request length exceeds MaxRequestLen You try to upload a file through http to your web site running on Apache2/PHP5/mod_fcgid, and in your browser you get the error: Error 500, Internal server error In Apache's error log you see something like [Thu Jan 27 15:14:15 2011] [warn] [client 192.168.1.151] mod_fcgid: HTTP request length 131484 (so far) exceeds MaxRequestLen (131072), referer: ...

  • Postfix/amavisd - connect to 127.0.0.1[127.0.0.1]:10024: Connection refused

    tux Author: Falko TimmeTags: Comments: 14

    Error: Postfix/amavisd - connect to 127.0.0.1[127.0.0.1]:10024: Connection refused You use a Postfix setup with amavisd-new and get the following errors in your mail log: Aug 17 14:58:33 server1 postfix/smtp[5993]: F0C57124E77: to=<[email protected]>, relay=none, delay=2524, delays=2524/0.27/0/0, dsn=4.4.1, status=deferred (connect to 127.0.0.1[127.0.0.1]:10024: Connection refused) Or: Aug 17 09:42:24 server1 postfix/error[7809]: 15D54124E53: to=<[email protected]>, relay=none, delay=269, delays=0.49/269/0/0.04, dsn=4.4.2, status=deferred (delivery temporarily suspended: conversation with 127.0.0.1[127.0.0.1] timed out while receiving the initial server greeting)

  • Setting Up ProFTPd + TLS On Debian Squeeze

    debian Author: Falko TimmeTags: , , Comments: 1

    Setting Up ProFTPd + TLS On Debian Squeeze FTP is a very insecure protocol because all passwords and all data are transferred in clear text. By using TLS, the whole communication can be encrypted, thus making FTP much more secure. This article explains how to set up ProFTPd with TLS on a Debian Squeeze server.

  • Installing Apache2 With PHP5 And MySQL Support On Fedora 15 (LAMP)

    fedora VMWare Image Download Author: Falko TimmeTags: , , , , Comments: 1

    Installing Apache2 With PHP5 And MySQL Support On Fedora 15 (LAMP) LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a Fedora 15 server with PHP5 support (mod_php) and MySQL support.

  • How To Take Screenshots Of Your Android Smartphone

    android Author: Falko TimmeTags: , Comments: 21

    How To Take Screenshots Of Your Android Smartphone Unfortunately it is not possible to directly take screenshots of an Android phone (e.g. by tapping on a button). This tutorial shows you how you can take screenshots of an Android smartphone with the help of a computer where the Android SDK is installed.

  • Fedora 15 - ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory

    fedora Author: Falko TimmeTags: Comments: 0

    Error: Fedora 15 - ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory While you run virt-manager on a Fedora 15 desktop and try to connect to a KVM host, you get the following error message: cannot recv data: ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory Host key verification failed. : Connection reset by peer Traceback (most recent call last):   File "/usr/share/virt-manager/virtManager/connection.py", line 1055, in _try_open     None], flags)   File "/usr/lib/python2.7/site-packages/libvirt.py", line 107, in openAuth     if ret is None:raise libvirtError('virConnectOpenAuth() failed') libvirtError: cannot recv data: ssh_askpass: exec(/usr/libexec/openssh/ssh-askpass): No such file or directory Host key verification failed. : Connection reset by peer

  • Ubuntu 11.04 Samba Standalone Server With tdbsam Backend

    ubuntu VMWare Image Download Author: Falko TimmeTags: , , Comments: 1

    This tutorial explains the installation of a Samba fileserver on Ubuntu 11.04 and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access.

  • [solved] MySQL - Got a packet bigger than 'max_allowed_packet' bytes

    mysql Author: Falko TimmeTags: , Comments: 1

    You see the following error while executing a MySQL query: 'ERROR 1153 (08S01) at line 138: Got a packet bigger than 'max_allowed_packet' bytes'. Here is the solution