Tipps und Tricks rund um Linux

During the setup of a Master-Slave OpenLDAP environment we had to deal with a "strange" error log message on the slave server. The server logged:

Jun 25 06:57:02 ldapsrv02 slapd[11808]: Entry (cn=vwxyz,dc=vwxyz,dc=xy): object class 'simpleSecurityObject' requires attribute 'userPassword'

In the...

Imagine you're running an example configuration as shown in the image below.

There is a server running at a data center (internal ip 192.168.0.1). Remotely you're running for example a Raspberry Pi box (internal 10.0.0.250) where you'd like to monitor the locale temperature as a RRD graph within...

Das Domain-Name-Service (kurz DNS) gehört neben dem IP-Protokoll zu einem der Standbeine des Internets und somit auch zu jedem Web-Auftritt. Meist bleibt DNS im Hintergrund, da dieses Service im Normalfall als einfache Namensauflösung vom Provider erbracht wird. Es gibt jedoch Projekt-Anforderungen...

Wie findet man auf die Schnelle große Datenbanken und Tabellen in einem MySQL-Server?

mysql>
use information_schema;
SELECT concat(table_schema,'.',table_name),concat(round(table_rows/1000000,2),'M') rows,concat(round(data_length/(1024*1024*1024),2),'G') DATA,concat(round(index_length/(1024*1024*1...

Oftmals besteht der Bedarf große Dateien in Linux zu finden.

Folgendes Kommando dient hierzu (Bsp.: Suche Dateien >= 20 MB):

find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

Beispiel-Ergebnis:

var/log/auth.log.1: 23M