<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Wandzeitung</title>
	<atom:link href="http://wandzeitung.informations-compagnie.de/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://wandzeitung.informations-compagnie.de</link>
	<description>thoughts from a hidden scape</description>
	<lastBuildDate>Mon, 23 Apr 2012 19:22:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Gentoo ebuild: Nginx With Support For Upstream Fair Proxy Load Balancer by Gentoo ebuild: Nginx With Support For Upstream Fair Proxy Load Balancer And HTTP-Auth against LDAP &#124; Wandzeitung</title>
		<link>http://wandzeitung.informations-compagnie.de/2012/01/10/gentoo-ebuild-nginx-with-support-for-upstream-fair-proxy-load-balancer/comment-page-1/#comment-11833</link>
		<dc:creator>Gentoo ebuild: Nginx With Support For Upstream Fair Proxy Load Balancer And HTTP-Auth against LDAP &#124; Wandzeitung</dc:creator>
		<pubDate>Mon, 23 Apr 2012 19:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=186#comment-11833</guid>
		<description>[...] Wandzeitung   thoughts from a hidden scape    Skip to content HomeDatenschutzImpressum        &#8592; Gentoo ebuild: Nginx With Support For Upstream Fair Proxy Load Balancer [...]</description>
		<content:encoded><![CDATA[<p>[...] Wandzeitung   thoughts from a hidden scape    Skip to content HomeDatenschutzImpressum        &larr; Gentoo ebuild: Nginx With Support For Upstream Fair Proxy Load Balancer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto split a SQL database dump into table-wise files by Stephan Schier</title>
		<link>http://wandzeitung.informations-compagnie.de/2011/07/12/howto-split-a-sql-database-dump-into-table-wise-files/comment-page-1/#comment-11467</link>
		<dc:creator>Stephan Schier</dc:creator>
		<pubDate>Wed, 13 Jul 2011 10:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=124#comment-11467</guid>
		<description>cool script

I have a lot of db dumps with multiple databases. So I modified your script. It creates a subdirectory for each database.

&lt;code&gt;
#!/bin/bash

file=$1 # the input file
directory=&quot;$file-splitted&quot; # the output directory
output=&quot;$directory/__header&quot; # the first file containing the header
GREPTABLE=&quot;DROP TABLE&quot; # what we are looking for
GREPDB=&quot;Current Database: &quot;

mkdir $directory # create the output directory

while read line
do
    # if the current line contains the wanted statement
    if [ $(echo &quot;$line&quot; &#124; grep -c &quot;$GREPDB&quot;) == &quot;1&quot; ]
    then
        # extract database name
        mydb=$(echo $line &#124; awk &#039;{print $4}&#039; &#124; sed -e &#039;s/`//g&#039;)
        # create db directory
        mkdir $directory/$mydb
        # set the new header file name
        output=&quot;$directory/$mydb/__header&quot;
    elif [ $(echo &quot;$line&quot; &#124; grep -c &quot;$GREPTABLE&quot;) == &quot;1&quot; ]
    then
        # extract the file name
        myfile=$(echo $line &#124; awk &#039;{print $5}&#039; &#124; sed -e &#039;s/`//g&#039; -e &#039;s/;//g&#039;)
        # set the new file name
        if [ -z &quot;$mydb&quot; ]
        then
            output=&quot;$directory/$myfile&quot;
        else
            output=&quot;$directory/$mydb/$myfile&quot;
        fi
    fi
    echo &quot;$line&quot; &gt;&gt; $output # write to file
done &lt; $file
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>cool script</p>
<p>I have a lot of db dumps with multiple databases. So I modified your script. It creates a subdirectory for each database.</p>
<p><code><br />
#!/bin/bash</p>
<p>file=$1 # the input file<br />
directory="$file-splitted" # the output directory<br />
output="$directory/__header" # the first file containing the header<br />
GREPTABLE="DROP TABLE" # what we are looking for<br />
GREPDB="Current Database: "</p>
<p>mkdir $directory # create the output directory</p>
<p>while read line<br />
do<br />
    # if the current line contains the wanted statement<br />
    if [ $(echo "$line" | grep -c "$GREPDB") == "1" ]<br />
    then<br />
        # extract database name<br />
        mydb=$(echo $line | awk '{print $4}' | sed -e 's/`//g')<br />
        # create db directory<br />
        mkdir $directory/$mydb<br />
        # set the new header file name<br />
        output="$directory/$mydb/__header"<br />
    elif [ $(echo "$line" | grep -c "$GREPTABLE") == "1" ]<br />
    then<br />
        # extract the file name<br />
        myfile=$(echo $line | awk '{print $5}' | sed -e 's/`//g' -e 's/;//g')<br />
        # set the new file name<br />
        if [ -z "$mydb" ]<br />
        then<br />
            output="$directory/$myfile"<br />
        else<br />
            output="$directory/$mydb/$myfile"<br />
        fi<br />
    fi<br />
    echo "$line" &gt;&gt; $output # write to file<br />
done &lt; $file<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tomcat on port 80 by Direktion</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/09/16/tomcat-on-port-80/comment-page-1/#comment-9334</link>
		<dc:creator>Direktion</dc:creator>
		<pubDate>Thu, 07 Apr 2011 08:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=37#comment-9334</guid>
		<description>Hi Renan,

have a look at &lt;code&gt;/etc/xinetd.conf&lt;/code&gt;. There should be a section called &lt;code&gt;defaults&lt;/code&gt; containing a option called &lt;code&gt;only_from = localhost&lt;/code&gt;. Comment this and restart the xinet daemon. It should work then. But have a look at the other services as well: &lt;em&gt;Everything is open then&lt;/em&gt;.

Cheers,
marcus</description>
		<content:encoded><![CDATA[<p>Hi Renan,</p>
<p>have a look at <code>/etc/xinetd.conf</code>. There should be a section called <code>defaults</code> containing a option called <code>only_from = localhost</code>. Comment this and restart the xinet daemon. It should work then. But have a look at the other services as well: <em>Everything is open then</em>.</p>
<p>Cheers,<br />
marcus</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tomcat on port 80 by Renan</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/09/16/tomcat-on-port-80/comment-page-1/#comment-9329</link>
		<dc:creator>Renan</dc:creator>
		<pubDate>Wed, 06 Apr 2011 22:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=37#comment-9329</guid>
		<description>I followed your advice but it only works in my local computer changing tomcat -&gt; http as follows.  I still cannot access the tomcat web server from outside
(I am running fedora 12 and tomcat 7)


# Redirects any requests on port 80
# to port 8080 (where Tomcat is listening)
service http
...</description>
		<content:encoded><![CDATA[<p>I followed your advice but it only works in my local computer changing tomcat -&gt; http as follows.  I still cannot access the tomcat web server from outside<br />
(I am running fedora 12 and tomcat 7)</p>
<p># Redirects any requests on port 80<br />
# to port 8080 (where Tomcat is listening)<br />
service http<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SFTP only and SSH only OpenSSH system with gentoo by Direktion</title>
		<link>http://wandzeitung.informations-compagnie.de/2009/02/12/sftp-only-and-ssh-only-openssh-system-with-gentoo/comment-page-1/#comment-9152</link>
		<dc:creator>Direktion</dc:creator>
		<pubDate>Tue, 22 Mar 2011 23:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=42#comment-9152</guid>
		<description>Sure! Thank you!</description>
		<content:encoded><![CDATA[<p>Sure! Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SFTP only and SSH only OpenSSH system with gentoo by Lartten</title>
		<link>http://wandzeitung.informations-compagnie.de/2009/02/12/sftp-only-and-ssh-only-openssh-system-with-gentoo/comment-page-1/#comment-9149</link>
		<dc:creator>Lartten</dc:creator>
		<pubDate>Tue, 22 Mar 2011 22:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=42#comment-9149</guid>
		<description>Great guide!

And don&#039;t forget, if you use pam, you have to copy the /etc/pam.d/sshd to /etc/pam.d/sshd2</description>
		<content:encoded><![CDATA[<p>Great guide!</p>
<p>And don&#8217;t forget, if you use pam, you have to copy the /etc/pam.d/sshd to /etc/pam.d/sshd2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on recursive md5 hashing with Linux by New MD5 based backup script &#171; jbmurphy.com</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/07/30/recursive-md5-hashing-with-linux/comment-page-1/#comment-4927</link>
		<dc:creator>New MD5 based backup script &#171; jbmurphy.com</dc:creator>
		<pubDate>Thu, 18 Mar 2010 21:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=34#comment-4927</guid>
		<description>[...] found this use of md5 and find the other day. I based my current backup script around it. The md5 will show if anyone modifies a [...]</description>
		<content:encoded><![CDATA[<p>[...] found this use of md5 and find the other day. I based my current backup script around it. The md5 will show if anyone modifies a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on our own gentoo portage overlay by rebuilding Cyrus indexes &#124; Informations-Compagnie ~ Wandzeitung</title>
		<link>http://wandzeitung.informations-compagnie.de/2009/01/09/our-own-gentoo-portage-overlay/comment-page-1/#comment-46</link>
		<dc:creator>rebuilding Cyrus indexes &#124; Informations-Compagnie ~ Wandzeitung</dc:creator>
		<pubDate>Thu, 15 Jan 2009 14:10:56 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=38#comment-46</guid>
		<description>[...] users can use our siczb portage overlay. Please have a look at this article to get to know how to access the [...]</description>
		<content:encoded><![CDATA[<p>[...] users can use our siczb portage overlay. Please have a look at this article to get to know how to access the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on icecast and awstats by Recent URLs tagged Icecast - Urlrecorder</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/04/01/icecast-and-awstats/comment-page-1/#comment-40</link>
		<dc:creator>Recent URLs tagged Icecast - Urlrecorder</dc:creator>
		<pubDate>Thu, 25 Dec 2008 17:01:30 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/2008/04/01/icecast-and-awstats/#comment-40</guid>
		<description>[...] recorded first by nubianwed on 2008-12-15&#8594; icecast and awstats [...]</description>
		<content:encoded><![CDATA[<p>[...] recorded first by nubianwed on 2008-12-15&rarr; icecast and awstats [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on O2 Memory Project by re(e)volution Â· blog &#187; Blog Archive &#187; Vermischtes</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/05/08/o2-memory-project/comment-page-1/#comment-38</link>
		<dc:creator>re(e)volution Â· blog &#187; Blog Archive &#187; Vermischtes</dc:creator>
		<pubDate>Sun, 14 Dec 2008 18:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=32#comment-38</guid>
		<description>[...] sollte man ja Privates und Berufliches auseinanderhalten, doch in diesem Falle will ich eine Ausnahme machen. Das O2 Memory Project hat mich nicht nur im professionellen Sinne [...]</description>
		<content:encoded><![CDATA[<p>[...] sollte man ja Privates und Berufliches auseinanderhalten, doch in diesem Falle will ich eine Ausnahme machen. Das O2 Memory Project hat mich nicht nur im professionellen Sinne [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tomcat on port 80 by wandzeitung</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/09/16/tomcat-on-port-80/comment-page-1/#comment-37</link>
		<dc:creator>wandzeitung</dc:creator>
		<pubDate>Sun, 14 Dec 2008 13:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=37#comment-37</guid>
		<description>Hi John,

No.  The code says Â«redirect = localhost 8080Â», so everything&#039;s being forwarded to this host:port (here localhost:8080).

Xinetd doesn&#039;t want to know, WHERE tomcat (or any application) is installed. Instead, it uses just host:port to communicate.


Cheers!</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>No.  The code says Â«redirect = localhost 8080Â», so everything&#8217;s being forwarded to this host:port (here localhost:8080).</p>
<p>Xinetd doesn&#8217;t want to know, WHERE tomcat (or any application) is installed. Instead, it uses just host:port to communicate.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on tomcat on port 80 by John</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/09/16/tomcat-on-port-80/comment-page-1/#comment-29</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 25 Sep 2008 05:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=37#comment-29</guid>
		<description>I have my tomcat in /home/userName/applications/tomcat6

your code said 
service tomcat
{ ...

does that means &quot;xinetd redirect configuration&quot; will actually works automatically without knowing where tomcat is installed?</description>
		<content:encoded><![CDATA[<p>I have my tomcat in /home/userName/applications/tomcat6</p>
<p>your code said<br />
service tomcat<br />
{ &#8230;</p>
<p>does that means &#8220;xinetd redirect configuration&#8221; will actually works automatically without knowing where tomcat is installed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Serverupdate by Direktion</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/06/28/serverupdate/comment-page-1/#comment-20</link>
		<dc:creator>Direktion</dc:creator>
		<pubDate>Sat, 28 Jun 2008 21:56:20 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=33#comment-20</guid>
		<description>Ein Fehler in der deutschen Version von Wordpress verursacht noch einige Schwierigkeiten. Wir arbeiten bereits daran...</description>
		<content:encoded><![CDATA[<p>Ein Fehler in der deutschen Version von WordPress verursacht noch einige Schwierigkeiten. Wir arbeiten bereits daran&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on O2 Memory Project by re(e)volution · blog &#187; Blog Archive &#187; Vermischtes</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/05/08/o2-memory-project/comment-page-1/#comment-6</link>
		<dc:creator>re(e)volution · blog &#187; Blog Archive &#187; Vermischtes</dc:creator>
		<pubDate>Thu, 08 May 2008 10:29:16 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/?p=32#comment-6</guid>
		<description>[...] sollte man ja Privates und Berufliches auseinanderhalten, doch in diesem Falle will ich eine Ausnahme machen. Das O2 Memory Project hat mich nicht nur im professionellen Sinne [...]</description>
		<content:encoded><![CDATA[<p>[...] sollte man ja Privates und Berufliches auseinanderhalten, doch in diesem Falle will ich eine Ausnahme machen. Das O2 Memory Project hat mich nicht nur im professionellen Sinne [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on gentoo and kde4 by Dirk Gently</title>
		<link>http://wandzeitung.informations-compagnie.de/2008/03/31/gentoo-and-kde4/comment-page-1/#comment-5</link>
		<dc:creator>Dirk Gently</dc:creator>
		<pubDate>Tue, 01 Apr 2008 21:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://wandzeitung.informations-compagnie.de/2008/03/31/gentoo-and-kde4/#comment-5</guid>
		<description>yeah that pretty much what I had</description>
		<content:encoded><![CDATA[<p>yeah that pretty much what I had</p>
]]></content:encoded>
	</item>
</channel>
</rss>

