Linux Tutorials on the topic “debian”
-
How To Install Django On Debian Lenny (Apache2/mod_python)
Author: Falko Timme • Tags: apache, debian • Comments: 2
How To Install Django On Debian Lenny (Apache2/mod_python) This tutorial explains how to install Django on a Debian Lenny server. Django is a web framework that allows to develop Python web applications quickly with as much automation as possible. I will use it with Apache2 and mod_python in this guide.
-
Boot On BTRFS With Debian
Author: bad_crow • Tags: debian • Comments: 11
Boot On BTRFS With Debian This tutorial will explain you how to boot from a BTRFS filesystem with kernel 2.6.31-RC4 and BTRFS 0.19. BTRFS is a new filesystem with some really interesting features like online defragmenting and snapshots. BTRFS is an experimental filesystem, use at your own risk. The kernel used is also experimental.
-
Virtual Hosting With Proftpd And MySQL (Incl. Quota) On Debian Lenny
Author: Falko Timme • Tags: debian, ftp • Comments: 12
Virtual Hosting With Proftpd And MySQL (Incl. Quota) On Debian Lenny This document describes how to install a Proftpd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine. In addition to that I will show the use of quota with this setup.
-
-
Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Debian Lenny
Author: Falko Timme • Tags: debian, ftp • Comments: 3
Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Debian Lenny This document describes how to install a PureFTPd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine. In addition to that I will show the use of quota and upload/download bandwidth limits with this setup. Passwords will be stored encrypted as MD5 strings in the database.
-
Monitoring Multiple Log Files At A Time With MultiTail On Debian Lenny
Author: Falko Timme • Tags: debian, monitoring • Comments: 0
Monitoring Multiple Log Files At A Time With MultiTail On Debian Lenny MultiTail lets you view one or multiple files like the original tail program. The difference is that it creates multiple windows on your console (with ncurses). It can also monitor wildcards: if another file matching the wildcard has a more recent modification date, it will automatically switch to that file. That way you can, for example, monitor a complete directory of files. Merging of two or even more log files is possible.
-
Setting Up ProFTPd + TLS On Debian Lenny
Author: Falko Timme • Tags: debian, ftp • Comments: 3
Setting Up ProFTPd + TLS On Debian Lenny 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 Lenny server.
-
Install Drizzle On Debian Lenny
Author: mezgani • Tags: debian • Comments: 0
Install Drizzle On Debian Lenny Drizzle is a Free Software/Open Source database management system (DBMS) that was forked from version 6.0 of the MySQL DBMS. Like MySQL, Drizzle has a client/server architecture and uses SQL as its primary command language. Drizzle is distributed under version 2 of the GNU General Public License.
-
How To Connect To A WPA Wifi Using Command Lines On Debian
Author: bad_crow • Tags: debian • Comments: 7
How To Connect To A WPA Wifi Using Command Lines On Debian This tutorial will explain how to connect to a WPA (1-2) wireless network without installing any graphical tool.
-
How To Defend slowloris DDoS With mod_qos (Apache2 On Debian [Lenny])
Author: MarcusSpiegel • Tags: linux, apache, security, debian, linux, apache, security • Comments: 6
How To Defend slowloris DDoS With mod_qos (Apache2 On Debian [Lenny]) mod_qos gives some fine-grained opportunities to scale the number of used connections and to defend an attack according to bandwidth limits. Unfortunately it is only available as source-package and there are many possible settings, wich might be hard to setup for this special case. So I provide the way that helped me.
-
Setting Up A High-Availability Load Balancer (With Failover and Session Support) With HAProxy/Heartbeat On Debian Lenny
Author: Falko Timme • Tags: debian, high-availability • Comments: 4
Setting Up A High-Availability Load Balancer (With Failover and Session Support) With HAProxy/Heartbeat On Debian Lenny This article explains how to set up a two-node load balancer in an active/passive configuration with HAProxy and heartbeat on Debian Lenny. The load balancer sits between the user and two (or more) backend Apache web servers that hold the same content. Not only does the load balancer distribute the requests to the two backend Apache servers, it also checks the health of the backend servers. If one of them is down, all requests will automatically be redirected to the remaining backend server. In addition to that, the two load balancer nodes monitor each other using heartbeat, and if the master fails, the slave becomes the master, which means the users will not notice any disruption of the service. HAProxy is session-aware, which means you can use it with any web application that makes use of sessions (such as forums, shopping carts, etc.).