HowtoForge provides user-friendly Linux tutorials.
-
OpenSUSE - Can't connect to UNIX socket /var/run/clamav/clamd: No such file or directory
Author: Falko Timme • Tags: errors • Comments: 0Error: OpenSUSE - Can't connect to UNIX socket /var/run/clamav/clamd: No such file or directory You get the following error in your mail log: Jul 7 09:13:35 hades amavis[21674]: (21674-01) (!!)ClamAV-clamd av-scanner FAILED: run_av error: Too many retries to talk to /var/run/clamav/clamd (Can't connect to UNIX socket /var/run/clamav/clamd: No such file or directory) at (eval 101) line 325.
-
Ubuntu 11.04 Generic - The SysAdmin Way
Author: zeljkojagust • Tags: ubuntu • Comments: 1
Ubuntu 11.04 Generic - The SysAdmin Way In this tutorial I will guide you trough the setup of Ubuntu 11.04 Generic system the way a good linux system administrator would install it. After it is complete you will have a great starting point for all of your future Ubuntu linux needs. By that I mean the following: If you are using virtual environment, you will have an image that you can clone and convert in any supported virtual format and use it as a starting point for all of your Ubuntu virtual projects. If you install this on a real hardware you can also clone you installation and use it as a starting point on various other machines with similar hardware. I will not cover cloning and conversion in this tutorial. Also as I will edit and tweak few system settings in this tutorial that I will not explain much, I hope this guide will encourage you to further explore those options and Linux in general.
-
Setting Up Network RAID1 With DRBD On Debian Squeeze
Author: Falko Timme • Tags: debian, high-availability, storage • 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.
-
-
Useful Basic Terminal Commands On Linux Mint 11
Author: CSch • Tags: linux, ubuntu • Comments: 6
Useful Basic Terminal Commands On Linux Mint 11 This tutorial is supposed to show useful terminal commands to people who are new to Linux. Terminal commands are powerful tools if they are used correctly, but can cause great damage if you are not completely aware of what you are doing. Before using commands that are new to you, look up the manual page and make sure you have your files saved and backed up.
-
How To Speed Up Drupal 7.7 With Boost And nginx (Debian Squeeze)
Author: Falko Timme • Tags: apache, debian, nginx, web server • 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.
-
Xtables-Addons On Centos 6 & Iptables GeoIP Filtering
Author: TiTex • Tags: security, centos • Comments: 22
Xtables-Addons On Centos 6 & Iptables GeoIP Filtering This tutorial will explain how to install aditional modules for the kernel to use with iptables rules sets (netfilter modules). Xtables-addons is the successor to patch-o-matic(-ng). Likewise, it contains extensions that were not, or are not yet, accepted in the main kernel/iptables packages. Xtables-addons is different from patch-o-matic in that you do not have to patch or recompile the kernel.
-
Apache2 - mod_fcgid: HTTP request length exceeds MaxRequestLen
Author: Falko Timme • Tags: errors • 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
Author: Falko Timme • Tags: errors • 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)
-
How To Install Scientific Linux 6.1
Author: poustchi • Tags: linux • Comments: 0How To Install Scientific Linux 6.1 Scientific Linux 6.1 is a Linux release put together by Fermilab, CERN, and various other labs and universities around the world. Its primary purpose is to reduce duplicated effort of the labs, and to have a common install base for the various experimenters. The base SL distribution is basically Enterprise Linux, recompiled from source. Their main goal for the base distribution are to have everything compatible with Enterprise, with only a few minor additions or changes. An example of of items that were added are Alpine, and OpenAFS. This tutorial shows the process of installing Scientific Linux 6.1 using the DVD based method.
-
Setting Up ProFTPd + TLS On Debian Squeeze
Author: Falko Timme • Tags: debian, ftp, security • 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.