Linux Tutorials on the topic “debian”
-
Setting Up vsftpd + TLS On Debian Squeeze
Author: Falko Timme • Tags: debian, ftp, security • Comments: 0
Setting Up vsftpd + 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 vsftpd with TLS on a Debian Squeeze server.
-
Running Shopware Community Edition (Version 3.5.6) On Nginx (LEMP) On Debian Squeeze/Ubuntu 12.04
Author: Falko Timme • Tags: debian, nginx, ubuntu, web server • Comments: 1
Running Shopware Community Edition (Version 3.5.6) On Nginx (LEMP) On Debian Squeeze/Ubuntu 12.04 This tutorial shows how you can install and run Shopware Community Edition (version 3.5.6) on a Debian Squeeze or Ubuntu 12.04 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). Shopware is a feature-rich ecommerce platform; I will use the Community Edition here which is free. nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.
-
High-Availability Storage With GlusterFS 3.0.x On Debian Squeeze - Automatic File Replication Across Two Storage Servers
Author: Falko Timme • Tags: debian, high-availability, storage • Comments: 3
This tutorial shows how to set up a high-availability storage with two storage servers (Debian Squeeze) that use GlusterFS. Each storage server will be a mirror of the other storage server, and files will be replicated automatically across both storage servers. The client system (Debian Squeeze as well) will be able to access the storage as if it was a local filesystem. GlusterFS is a clustered file-system capable of scaling to several peta-bytes. It aggregates various storage bricks over Infiniband RDMA or TCP/IP interconnect into one large parallel network file system. Storage bricks can be made of any commodity hardware such as x86_64 servers with SATA-II RAID and Infiniband HBA.
-
-
Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Debian Squeeze
Author: Falko Timme • Tags: ftp, debian • Comments: 2
Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Debian Squeeze 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.
-
How To Configure Apache To Use Radius For Two-Factor Authentication On Ubuntu 12.04
Author: nowen • Tags: apache, debian, security, ubuntu • Comments: 0
How To Configure Apache To Use Radius For Two-Factor Authentication On Ubuntu 12.04 This document describes how to add WiKID two-factor authentication to Apache 2.2.22 using mod_auth_radius on Ubuntu 12.04. It is also recommended that you consider using mutual https authentication for web applications that are worthy of two-factor authentication. Strong mutual authentication means that the targeted website is authenticated to the user in some cryptographically secure manner, thwarting most man-in-the-middle attacks. The use of cryptography is key. While some sites use an image in an attempt to validate a server, it should be noted that any man-in-the-middle could simply replay such an image.
-
Running OXID eShop Community Edition (Version 4.5.9) On Nginx (LEMP) on Debian Squeeze/Ubuntu 11.10
Author: Falko Timme • Tags: debian, nginx, ubuntu, web server • Comments: 5
Running OXID eShop Community Edition (Version 4.5.9) On Nginx (LEMP) on Debian Squeeze/Ubuntu 11.10 This tutorial shows how you can install and run OXID eShop Community Edition (version 4.5.9) on a Debian Squeeze or Ubuntu 11.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). OXID eShop is a feature-rich ecommerce platform; I will use the Community Edition here which is licensed under an open source certified license (GPL v3.0). nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.
-
Creating An NFS-Like Standalone Storage Server With GlusterFS 3.0.x On Debian Squeeze
Author: Falko Timme • Tags: debian, storage • Comments: 1
This tutorial shows how to set up a standalone storage server on Debian Squeeze. Instead of NFS, I will use GlusterFS here. The client system will be able to access the storage as if it was a local filesystem. GlusterFS is a clustered file-system capable of scaling to several peta-bytes. It aggregates various storage bricks over Infiniband RDMA or TCP/IP interconnect into one large parallel network file system. Storage bricks can be made of any commodity hardware such as x86_64 servers with SATA-II RAID and Infiniband HBA.
-
How To Back Up MySQL Databases With mylvmbackup On Debian Squeeze
Author: Falko Timme • Tags: backup, debian, mysql • Comments: 0
mylvmbackup is a Perl script for quickly creating MySQL backups. It uses LVM's snapshot feature to do so. To perform a backup, mylvmbackup obtains a read lock on all tables and flushes all server caches to disk, creates a snapshot of the volume containing the MySQL data directory, and unlocks the tables again. This article shows how to use it on a Debian Squeeze server.
-
Encrypt Your Data With EncFS (Debian Squeeze/Ubuntu 11.10)
Author: Falko Timme • Tags: debian, security, storage, ubuntu • Comments: 2
Encrypt Your Data With EncFS (Debian Squeeze/Ubuntu 11.10) EncFS provides an encrypted filesystem in user-space. It runs without any special permissions and uses the FUSE library and Linux kernel module to provide the filesystem interface. It is a pass-through filesystem, not an encrypted block device, which means it is created on top of an existing filesystem. This tutorial shows how you can use EncFS on Debian Squeeze/Ubuntu 11.10 to encrypt your data.
-
How To Integrate ClamAV Into PureFTPd For Virus Scanning On Debian Squeeze
Author: Falko Timme • Tags: debian, ftp, security • Comments: 2
This tutorial explains how you can integrate ClamAV into PureFTPd for virus scanning on a Debian Squeeze system. In the end, whenever a file gets uploaded through PureFTPd, ClamAV will check the file and delete it if it is malware.