<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Benjamin Vötterle &#187; Administration und Hosting</title>
	<atom:link href="http://voetterle.de/category/administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://voetterle.de</link>
	<description>Berge, Klettern, Fotografie, OS X, Webentwicklung, Software</description>
	<lastBuildDate>Sun, 28 Aug 2011 20:09:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Subversion Server unter Debian Lenny einrichten</title>
		<link>http://voetterle.de/2009/06/05/subversion-server-unter-debian-lenny-einrichten/</link>
		<comments>http://voetterle.de/2009/06/05/subversion-server-unter-debian-lenny-einrichten/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 20:56:00 +0000</pubDate>
		<dc:creator>Benjamin Vötterle</dc:creator>
				<category><![CDATA[Administration und Hosting]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://voetterle.de/?p=643</guid>
		<description><![CDATA[Seit längerer Zeit hatte ich den Plan mir eine Quellcode-Verwaltung zu installieren. Da CVS mittlerweile doch schon etwas antiquiert ist und nicht mehr weiterentwickelt wird, habe ich mich hierzu für Subversion entschlossen. Wie sich Subversion unter Debian Lenny einrichten lässt, möchte ich Euch hier nun näher beschreiben. Bei meinem Subversion Server habe ich mich entschlossen, ... <a href="http://voetterle.de/2009/06/05/subversion-server-unter-debian-lenny-einrichten/">weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Seit längerer Zeit hatte ich den Plan mir eine Quellcode-Verwaltung zu installieren. Da <a href="http://www.nongnu.org/cvs/">CVS</a> mittlerweile doch schon etwas antiquiert ist und nicht mehr weiterentwickelt wird, habe ich mich hierzu für <a href="http://subversion.tigris.org/">Subversion</a> entschlossen. Wie sich Subversion unter Debian Lenny einrichten lässt, möchte ich Euch hier nun näher beschreiben.</p>
<p>Bei meinem Subversion Server habe ich mich entschlossen, die Authentifizierung über den Apache mit Hilfe des dav-Moduls zu realisieren.</p>
<h3>Installation</h3>
<p>Als erstes müssen die benötigten Pakete installiert werden:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> subversion apache2 libapache2-svn</div></td></tr></tbody></table></div>
<h3>Konfiguration</h3>
<p>Nun muss man das Subversion Verzeichnis für die Repositories erstellen und für den Apache Benutzer www-data lese- und schreibbar machen.</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">svn</span><br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> www-data:www-data <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">svn</span></div></td></tr></tbody></table></div>
<p>Das Verzeichnis muss nicht zwingend /var/svn sein und kann beliebig geändert werden.</p>
<h3>Server mit SSL absichern</h3>
<p>Will man den Subversion Server absichern, so kann man dies mit SSL tun. Hat man den Apache Server schon vorher für https eingerichtet oder will den Subversion Server nicht absichern, so können die nächsten Schritte entfallen.</p>
<p>OpenSSL installieren und das Apache Modul aktivieren:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> openssl ssl-cert<br />
a2enmod ssl</div></td></tr></tbody></table></div>
<p>Der /etc/apache2/ports.conf, wenn nicht vorhanden, dies hinzufügen:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;</span>ifModule mod_ssl.c<span style="color: #000000; font-weight: bold;">&gt;</span><br />
&nbsp; &nbsp; Listen <span style="color: #000000;">443</span><br />
<span style="color: #000000; font-weight: bold;">&lt;/</span>ifModule<span style="color: #000000; font-weight: bold;">&gt;</span></div></td></tr></tbody></table></div>
<p>Nun muss eine Konfiguration für den Virtualhost mit SSL eingerichtet werden. Dazu kann man einfach die Standart Konfiguration kopieren und anpassen:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>sites-available<span style="color: #000000; font-weight: bold;">/</span>default <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>sites-available<span style="color: #000000; font-weight: bold;">/</span>ssl.domain.tld</div></td></tr></tbody></table></div>
<p>Nun muss in der neuen Datei</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;</span>virtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">80</span><span style="color: #000000; font-weight: bold;">&gt;</span></div></td></tr></tbody></table></div>
<p>mit</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;</span>virtualHost <span style="color: #000000; font-weight: bold;">*</span>:<span style="color: #000000;">443</span><span style="color: #000000; font-weight: bold;">&gt;</span></div></td></tr></tbody></table></div>
<p>ersetzt werden. Und oberhalb von</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;/</span>virtualHost<span style="color: #000000; font-weight: bold;">&gt;</span></div></td></tr></tbody></table></div>
<p>dies eingefügt werden:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">SSLEngine on<br />
SSLCertificateFile <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>ssl.domain.tld.pem</div></td></tr></tbody></table></div>
<p>Danach muss man das SSL-Zertifikat erstellen:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>ssl<br />
make-ssl-cert <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>ssl-cert<span style="color: #000000; font-weight: bold;">/</span>ssleay.cnf <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>ssl.domain.tld.pem</div></td></tr></tbody></table></div>
<p>Schließlich muss die neue Site noch aktiviert werden.</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">a2ensite ssl.new.site<br />
<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 reload</div></td></tr></tbody></table></div>
<p>Eure Konfiguration könnt Ihr testen, indem Ihr https://domain.tld in Euren Browser eingebt.</p>
<h3>Einrichten des Apache Moduls dav_svn</h3>
<p>Zum Einrichten von dav_svn, muss die Datei /etc/apache2/mods-available/dav_svn.conf zwischen den Location-Tags, folgendermaßen ergänzt werden:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">DAV <span style="color: #c20cb9; font-weight: bold;">svn</span><br />
SVNParentPath <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">svn</span><br />
<br />
AuthType Basic<br />
AuthName <span style="color: #ff0000;">&quot;Subversion Repository&quot;</span><br />
AuthUserFile <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>dav_svn.passwd<br />
<br />
Require valid-user<br />
SSLRequireSSL &nbsp; &nbsp; &nbsp;<span style="color: #666666; font-style: italic;"># this line must be added if you want SSL enabled</span></div></td></tr></tbody></table></div>
<p>Danach kann das Modul aktiviert werden:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">a2enmod dav_svn<br />
<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</div></td></tr></tbody></table></div>
<p>Jetzt muss noch ein Benutzer für DAV eingerichtet werden. Der erste Benutzer wird so eingerichtet:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">htpasswd <span style="color: #660033;">-c</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>dav_svn.passwd benutzer1</div></td></tr></tbody></table></div>
<p>Weitere Benutzer so:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">htpasswd <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>dav_svn.passwd benutzer1</div></td></tr></tbody></table></div>
<h3>Erstes Repository erstellen</h3>
<p>Jetzt kann man das erste Subversion Repository erstellen:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">svnadmin</span> create <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>svn<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">test</span><br />
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> www-data:www-data <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>svn<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">test</span></div></td></tr></tbody></table></div>
<p>Ein Checkout kann so gemacht werden:</p>
<div class="codecolorer-container bash mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:640px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">svn co</span> https:<span style="color: #000000; font-weight: bold;">//</span>domain.tld<span style="color: #000000; font-weight: bold;">/</span>svn<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">test</span></div></td></tr></tbody></table></div>
<p>Ich hoffe meine Anleitung hat Euch ein Stück weit geholfen. Über Kommentare und Verbesserungsvorschläge freue ich mich jeder Zeit. <img src='http://voetterle.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://voetterle.de/2009/06/05/subversion-server-unter-debian-lenny-einrichten/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Server Upgrade auf Debian Lenny</title>
		<link>http://voetterle.de/2009/04/10/server-upgrade-auf-debian-lenny/</link>
		<comments>http://voetterle.de/2009/04/10/server-upgrade-auf-debian-lenny/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 19:28:04 +0000</pubDate>
		<dc:creator>Benjamin Vötterle</dc:creator>
				<category><![CDATA[Administration und Hosting]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://voetterle.de/?p=548</guid>
		<description><![CDATA[Ich habe vorher meinen Server von Debian Etch auf Lenny upgegradet. Nachdem Lenny jetzt schon einige Zeit veröffentlicht ist, habe ich beschlossen meinem Server eine kleine Erneuerung zu verpassen. Das Upgrade lief ohne nennenswerte Probleme durch.]]></description>
			<content:encoded><![CDATA[<p>Ich habe vorher meinen Server von <a href="http://debian.org">Debian Etch auf Lenny</a> upgegradet. Nachdem Lenny jetzt schon <a href="http://voetterle.de/2009/02/15/debian-gnulinux-50-aka-lenny-veroffentlicht/">einige Zeit veröffentlicht</a> ist, habe ich beschlossen meinem Server eine kleine Erneuerung zu verpassen. Das Upgrade lief ohne nennenswerte Probleme durch.</p>
]]></content:encoded>
			<wfw:commentRss>http://voetterle.de/2009/04/10/server-upgrade-auf-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spitze Script für Backups via FTP</title>
		<link>http://voetterle.de/2009/02/07/spitze-script-fuer-backups-via-ftp/</link>
		<comments>http://voetterle.de/2009/02/07/spitze-script-fuer-backups-via-ftp/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 17:53:24 +0000</pubDate>
		<dc:creator>Benjamin Vötterle</dc:creator>
				<category><![CDATA[Administration und Hosting]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://voetterle.de/?p=323</guid>
		<description><![CDATA[Ich war auf der Suche nach einem Script um Backups auf meinem Strato FTP Backup Space zu machen. Wichtig an dem Backup Script war, dass dieses auch die Sicherung der MYSQL Datenbank übernimmt.  Dabei bin ich auch diese Anleitung für Backups gestoßen. Das tolle daran ist, dass es dazu auch einen Online Konfigurator gibt, der einem ... <a href="http://voetterle.de/2009/02/07/spitze-script-fuer-backups-via-ftp/">weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Ich war auf der Suche nach einem Script um Backups auf meinem Strato FTP Backup Space zu machen. Wichtig an dem Backup Script war, dass dieses auch die Sicherung der MYSQL Datenbank übernimmt.  Dabei bin ich auch diese <a href="http://www.cyberciti.biz/tips/how-to-backup-mysql-databases-web-server-files-to-a-ftp-server-automatically.html">Anleitung für Backups</a> gestoßen. Das tolle daran ist, dass es dazu auch einen <a href="http://bash.cyberciti.biz/backup/wizard-ftp-script.php">Online Konfigurator</a> gibt, der einem nach dem Einstellen das fertig angepasste Script ausgibt</p>
]]></content:encoded>
			<wfw:commentRss>http://voetterle.de/2009/02/07/spitze-script-fuer-backups-via-ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dashalytics das Google Analytics Dashboard Widget</title>
		<link>http://voetterle.de/2009/01/27/dashalytics-das-google-analytics-dashboard-widget/</link>
		<comments>http://voetterle.de/2009/01/27/dashalytics-das-google-analytics-dashboard-widget/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 00:03:15 +0000</pubDate>
		<dc:creator>Benjamin Vötterle</dc:creator>
				<category><![CDATA[Administration und Hosting]]></category>
		<category><![CDATA[Apple Mac OS X]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Webentwicklung]]></category>

		<guid isPermaLink="false">http://voetterle.de/?p=301</guid>
		<description><![CDATA[Da das Statpress Plugin im Zusammenhang mit Caching Schwierigkeiten macht, habe ich mich nach einer Alternative umgeschaut, um Besuche auf meiner Seite zu zählen. Freunde von mir haben vorgeschlagen Google Analytics zu verwenden. Auf den ersten Blick war ich sehr zufrieden damit, jedoch hat es mich gestört, dass ich mich immer wieder auf der Seite ... <a href="http://voetterle.de/2009/01/27/dashalytics-das-google-analytics-dashboard-widget/">weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Da das <a href="http://wordpress.org/extend/plugins/statpress/">Statpress Plugin</a> im Zusammenhang mit Caching Schwierigkeiten macht, habe ich mich nach einer Alternative umgeschaut, um Besuche auf meiner Seite zu zählen. Freunde von mir haben vorgeschlagen <a href="http://www.google.com/analytics/de-DE/">Google Analytics</a> zu verwenden. Auf den ersten Blick war ich sehr zufrieden damit, jedoch hat es mich gestört, dass ich mich immer wieder auf der Seite einloggen muss, um meine Daten sehen zu können. Rein zufällig bin ich dann auf Dashalytics gestoßen. Bei <a href="http://dashalytics.rovingrob.com/">Dashalytics</a> handelt es sich um ein Dashboard Widget, welches einem die wichtigsten Daten von Google Analytics anzeigt.</p>
]]></content:encoded>
			<wfw:commentRss>http://voetterle.de/2009/01/27/dashalytics-das-google-analytics-dashboard-widget/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Praktische Anleitungen für FTP und Mail Server</title>
		<link>http://voetterle.de/2009/01/24/praktische-anleitungen-fur-ftp-und-mail-server/</link>
		<comments>http://voetterle.de/2009/01/24/praktische-anleitungen-fur-ftp-und-mail-server/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 22:25:03 +0000</pubDate>
		<dc:creator>Benjamin Vötterle</dc:creator>
				<category><![CDATA[Administration und Hosting]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rootserver]]></category>

		<guid isPermaLink="false">http://voetterle.de/?p=298</guid>
		<description><![CDATA[Zur Neuinstallation meines Rootservers habe ich das Internet nach einigen Hilfen bemüht. Dabei bin ich auf 2 sehr gute und hilfreiche Anleitungen gestoßen, die ich Euch nicht vorenthalten will: - Virtual Mailserver Hosting mit: Postfix, Dovecot, MySQL und AMaViS - Virtual FTP Hosting mit: pureFTP und MySQL Update: Ich habe eine noch bessere FTP Anleitung gefunden: ... <a href="http://voetterle.de/2009/01/24/praktische-anleitungen-fur-ftp-und-mail-server/">weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Zur Neuinstallation meines Rootservers habe ich das Internet nach einigen Hilfen bemüht. Dabei bin ich auf 2 sehr gute und hilfreiche Anleitungen gestoßen, die ich Euch nicht vorenthalten will:</p>
<p>- <a href="http://workaround.org/articles/ispmail-etch/">Virtual Mailserver Hosting mit: Postfix, Dovecot, MySQL und AMaViS</a><br />
- <a href="http://wiki.hetzner.de/index.php/PureFTPd">Virtual FTP Hosting mit: pureFTP und MySQL</a></p>
<p>Update: Ich habe eine noch bessere FTP Anleitung gefunden:</p>
<p>- <a href="http://howtoforge.com/proftpd_mysql_virtual_hosting_debian_etch">Virtual FTP Hosting mit: ProFTPd und MySQL </a>(<a href="http://howtoforge.com/proftpd-tls-debian-etch">für TLS zusätzlich diese Beschreibung</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://voetterle.de/2009/01/24/praktische-anleitungen-fur-ftp-und-mail-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

