ProFTPD listen only on one specific IP address

To tell ProFTPD only to listen on one specific IP address you need to set the following configuration parameters in your proftpd.conf file. If the IP address is the first IP address of your system: SocketBindTight on If the IP address should be explicitly defined: SocketBindTight on DefaultAddress 127.0.0.1 The ProFTPD documentation isn't very clear ... Weiterlesen

Piwik Daten löschen / zurücksetzen

Piwik ist ein kostenloser Open Source Google Analytics Ersatz, den man selbst auf dem eigenen Server hosten kann. Um den Datenbestand einer Piwik Installation zurückzusetzen ohne neu zu installieren kann man wie folgt vorgehen: TEMP_FILE=$(mktemp) mysql -D piwik -e "show tables like 'piwik_archive_blob_%'" -s | egrep "^piwik_archive_blob_" | xargs -I "@@" echo mysql -D piwik ... Weiterlesen