<?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>Cauwenbergh.be weblog &#187; Linux</title>
	<atom:link href="http://blog.cauwenbergh.be/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.cauwenbergh.be</link>
	<description>When communication is needed</description>
	<lastBuildDate>Tue, 06 Jul 2010 14:58:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mysql Master Master Replication on CentOS 5</title>
		<link>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html</link>
		<comments>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html#comments</comments>
		<pubDate>Tue, 22 Jun 2010 18:00:25 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=127</guid>
		<description><![CDATA[This tutorial describes how to set up a MySQL master-master replication. This is usefull is one of the servers drops down, the other can take over without any data loss, it will also be used as slave for the live one.
Step 1:
Install mysql on master 1 (slave 2) and slave 1 (master2).
#yum install mysql-server mysql
Master [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial describes how to set up a MySQL master-master replication. This is usefull is one of the servers drops down, the other can take over without any data loss, it will also be used as slave for the live one.</p>
<p><span style="text-decoration: underline;"><strong>Step 1:</strong></span><br />
Install mysql on master 1 (slave 2) and slave 1 (master2).<br />
#yum install mysql-server mysql</p>
<p>Master 1 (slave 2) ip: 10.0.0.1<br />
Slave 1 (master 2) ip: 10.0.0.2<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<span style="text-decoration: underline;"><strong>Step 2:</strong></span><br />
On Master 1, change /etc/my.cnf as follow:</p>
<p>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
old_passwords=1<br />
user=mysql<br />
log-bin=mysql-bin<br />
server-id=1</p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 3:</strong></span><br />
Logon to mysql on master 1 (in our case the server with ip 10.0.0.1):<br />
mysql&gt; grant replication slave on *.* to &#8216;<span style="color: #339966;">repl</span>&#8216;@&#8217;%&#8217; identified by &#8216;<span style="color: #339966;">WhatYouwant</span>&#8216;;</p>
<p>After this restart the mysql on master 1</p>
<p><span style="color: #999999;"><em>We used the % but you can set here also 10.0.0.2 for a more secure server!</em></span></p>
<p><span style="text-decoration: underline;"><strong>Step 4:</strong></span><br />
On slave 1 (in our case the server with ip 10.0.0.2) edit /etc/my.cnf as follow:</p>
<p>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
user=mysql<br />
old_passwords=1<br />
server-id=2</p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 5:</strong></span><br />
Logon to mysql master 1:<br />
mysql&gt; show master status;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| <span style="color: #ff0000;">mysql-bin.000007</span> |     <span style="color: #ff0000;">2013</span> |              |                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
1 row in set (0.00 sec)</p>
<p><span style="text-decoration: underline;"><strong>Step 6:</strong></span></p>
<p>Logon to mysql on slave 1 and use the infomation from step 5:<br />
mysql&gt;CHANGE MASTER TO MASTER_HOST=&#8217;10.0.0.1&#8242;, MASTER_USER=&#8217;<span style="color: #339966;">repl</span>&#8216;, MASTER_PASSWORD=&#8217;<span style="color: #339966;">WhatYouWant</span>&#8216;, MASTER_LOG_FILE=&#8217;<span style="color: #ff0000;">mysql-bin.000007</span>&#8216;, MASTER_LOG_POS=<span style="color: #ff0000;">2013</span>;<br />
mysql&gt;start slave;<br />
mysql&gt;show slave status\G</p>
<p><span style="color: #808080;">*************************** 1. row ***************************<br />
Slave_IO_State: Waiting for master to send event<br />
Master_Host: 10.0.0.1<br />
Master_User: repl<br />
Master_Port: 3306<br />
Connect_Retry: 60<br />
Master_Log_File: mysql-bin.000007<br />
Read_Master_Log_Pos: 2013<br />
Relay_Log_File: mysqld-relay-bin.000003<br />
Relay_Log_Pos: 2150<br />
Relay_Master_Log_File: mysql-bin.000007<br />
Slave_IO_Running: Yes<br />
Slave_SQL_Running: Yes<br />
Replicate_Do_DB:<br />
Replicate_Ignore_DB:<br />
Replicate_Do_Table:<br />
Replicate_Ignore_Table:<br />
Replicate_Wild_Do_Table:<br />
Replicate_Wild_Ignore_Table:<br />
Last_Errno: 0<br />
Last_Error:<br />
Skip_Counter: 0<br />
Exec_Master_Log_Pos: 2013<br />
Relay_Log_Space: 2150<br />
Until_Condition: None<br />
Until_Log_File:<br />
Until_Log_Pos: 0<br />
Master_SSL_Allowed: No<br />
Master_SSL_CA_File:<br />
Master_SSL_CA_Path:<br />
Master_SSL_Cert:<br />
Master_SSL_Cipher:<br />
Master_SSL_Key:<br />
Seconds_Behind_Master: 0<br />
1 row in set (0.00 sec)<br />
</span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<span style="text-decoration: underline;"><strong>Step 7:</strong></span><br />
Now we going to make slave 1 -&gt; master 2 and master 1 -&gt; slave 2 so the master-master replication will work!<br />
On slave 1 (ip 10.0.0.2) we add a rule to /etc/my.cnf:<br />
[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
user=mysql<br />
old_passwords=1<br />
server-id=2<br />
<em>log-bin</em></p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 8:</strong></span><br />
On slave 1 (ip 10.0.0.2 in our example) create the replication in mysql:<br />
mysql&gt; grant replication slave on *.* to &#8216;repl&#8217;@'%&#8217; identified by &#8216;<span style="color: #99cc00;">WhatYouWant</span>&#8216;;</p>
<p><span style="color: #999999;">You can change the % to be more safe in 10.0.0.1!</span></p>
<p>mysql&gt; show master status;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| File              | Position | Binlog_Do_DB | Binlog_Ignore_DB |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| <span style="color: #ff00ff;">mysqld-bin.000005</span> |      <span style="color: #ff00ff;">314</span> |              |                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
1 row in set (0.00 sec)</p>
<p><span style="text-decoration: underline;"><strong>Step 9:</strong></span><br />
On master 1 (ip 10.0.0.1 in our example) add the user to mysql (use information from step 8):</p>
<p>mysql&gt;CHANGE MASTER TO MASTER_HOST=&#8217;10.0.0.2&#8242;, MASTER_USER=&#8217;repl&#8217;,  MASTER_PASSWORD=&#8217;<span style="color: #99cc00;">WhatYouWant</span>&#8216;, MASTER_LOG_FILE=&#8217;<span style="color: #ff00ff;">mysqld-bin.000005</span>&#8216;,  MASTER_LOG_POS=<span style="color: #ff00ff;">314</span>;</p>
<p><span style="text-decoration: underline;"><strong>Step 10:</strong></span><br />
Restart both mysql services on master 1 (slave 2) and slave 1 (master 2).</p>
<p>On master 1:<br />
mysql&gt; start slave;</p>
<p>On slave 1:<br />
mysql&gt; show master status;</p>
<p>On master 1:<br />
mysql&gt; show slave status\G<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<pre>So now you can test on both servers if your config works! Hope you enjoy the tutorial and have a safe configuration! If you want safe hosting with this solution you can also take hosting by <a title="Netdistri bvba" href="http://netdistri.eu" target="_blank">Netdistri bvba</a>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install postfix mailserver only for forwarding</title>
		<link>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html</link>
		<comments>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:49:06 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Dutchzone]]></category>
		<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netdistri]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=124</guid>
		<description><![CDATA[For some reasons i only had to install a mailserver for forwarding mails to other mailaddresses. So on Centos here you have it:
#yum install postfix smtpd
edit /etc/postfix/main.cf
myhostname = your.domain.tld
virtual_alias_domains = redirectdomain1.tld, redirectdomain2.tld
virtual_alias_maps = hash:/etc/postfix/virtual
edit /etc/postfix/virtual
address@redirectdomain1.tld   addresto@domainto.tld
@redirectdomain2.tld  addresstocatchall@domaintoxx.tld
After this run the following commands:
# postalias /etc/aliases
# postmap /etc/postfix/access
# postmap /etc/postfix/virtual
# postmap /etc/postfix/transport
# cp /etc/aliases /etc/postfix/
# newaliases
# postfix [...]]]></description>
			<content:encoded><![CDATA[<p>For some reasons i only had to install a mailserver for forwarding mails to other mailaddresses. So on Centos here you have it:</p>
<p>#yum install postfix smtpd</p>
<p>edit /etc/postfix/main.cf</p>
<p>myhostname = your.domain.tld</p>
<p>virtual_alias_domains = redirectdomain1.tld, redirectdomain2.tld<br />
virtual_alias_maps = hash:/etc/postfix/virtual</p>
<p>edit /etc/postfix/virtual</p>
<p>address@redirectdomain1.tld   addresto@domainto.tld</p>
<p>@redirectdomain2.tld  addresstocatchall@domaintoxx.tld</p>
<p>After this run the following commands:</p>
<p># postalias /etc/aliases<br />
# postmap /etc/postfix/access<br />
# postmap /etc/postfix/virtual<br />
# postmap /etc/postfix/transport<br />
# cp /etc/aliases /etc/postfix/<br />
# newaliases<br />
# postfix reload</p>
<p>Now the server is ready to forward your mails!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove domain tomcat problem</title>
		<link>http://blog.cauwenbergh.be/linux/remove-domain-tomcat-problem.html</link>
		<comments>http://blog.cauwenbergh.be/linux/remove-domain-tomcat-problem.html#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:08:32 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=56</guid>
		<description><![CDATA[To remove a domain that generate a tomcat error during delete, copy an existing xml file from the following dir:
/usr/share/tomcat5/psa-users/
to {domain}.xml where {domain} is the full domain name to be removed.

]]></description>
			<content:encoded><![CDATA[<p>To remove a domain that generate a tomcat error during delete, copy an existing xml file from the following dir:</p>
<p>/usr/share/tomcat5/psa-users/</p>
<p>to {domain}.xml where {domain} is the full domain name to be removed.<br />
<!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/remove-domain-tomcat-problem.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Process op shared server bepalen van eigenaar</title>
		<link>http://blog.cauwenbergh.be/linux/process-op-shared-server-bepalen-van-eigenaar.html</link>
		<comments>http://blog.cauwenbergh.be/linux/process-op-shared-server-bepalen-van-eigenaar.html#comments</comments>
		<pubDate>Mon, 05 Jan 2009 15:11:01 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[eigenaar]]></category>
		<category><![CDATA[owner]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=50</guid>
		<description><![CDATA[# ls /proc/&#60;pidnr&#62;/cwd/ -al
pidnr vervangen door de nr van het process

]]></description>
			<content:encoded><![CDATA[<p># ls /proc/&lt;pidnr&gt;/cwd/ -al</p>
<p>pidnr vervangen door de nr van het process<br />
<!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/process-op-shared-server-bepalen-van-eigenaar.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk SQL Injection vulnerability</title>
		<link>http://blog.cauwenbergh.be/linux/plesk-sql-injection-vulnerability.html</link>
		<comments>http://blog.cauwenbergh.be/linux/plesk-sql-injection-vulnerability.html#comments</comments>
		<pubDate>Wed, 26 Sep 2007 14:20:08 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=33</guid>
		<description><![CDATA[Today we have solved this bug on our productionserver.  You can read how to solve this on:
http://kb.swsoft.com/en/2169
]]></description>
			<content:encoded><![CDATA[<p>Today we have solved this bug on our productionserver.  You can read how to solve this on:</p>
<p><a href="http://kb.swsoft.com/en/2169" title="SQL Problem in Plesk BUG" target="_blank">http://kb.swsoft.com/en/2169</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/plesk-sql-injection-vulnerability.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable ping on linux</title>
		<link>http://blog.cauwenbergh.be/linux/disable-ping-on-linux.html</link>
		<comments>http://blog.cauwenbergh.be/linux/disable-ping-on-linux.html#comments</comments>
		<pubDate>Thu, 19 Jul 2007 08:24:32 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=31</guid>
		<description><![CDATA[Almost all people starting with linux want to know after a while how to stop ping to prevent floods, well here is the solutions:
echo 1 &#62;/proc/sys/net/ipv4/icmp_echo_ignore_all
Only one thing left to do, you also want to get this after a reboot, so put in /etc/sysctl.conf.:
net.ipv4.conf.icmp_echo_ignore_all = 1
]]></description>
			<content:encoded><![CDATA[<p>Almost all people starting with linux want to know after a while how to stop ping to prevent floods, well here is the solutions:</p>
<blockquote><p>echo 1 &gt;/proc/sys/net/ipv4/icmp_echo_ignore_all</p></blockquote>
<p>Only one thing left to do, you also want to get this after a reboot, so put in /etc/sysctl.conf.:</p>
<blockquote><p>net.ipv4.conf.icmp_echo_ignore_all = 1</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/disable-ping-on-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core 2 repository</title>
		<link>http://blog.cauwenbergh.be/linux/fedora-core-2-repository.html</link>
		<comments>http://blog.cauwenbergh.be/linux/fedora-core-2-repository.html#comments</comments>
		<pubDate>Sun, 08 Jul 2007 15:56:57 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=30</guid>
		<description><![CDATA[Today i found that the mirrors in usa not working for some reason on a fedora core 2 system of a customer, so i searched and found a newone and placed in /etc/yum.conf:

[base]
name=Fedora Core $releasever - $basearch - Base
baseurl=ftp://alviss.et.tudelft.nl/pub/fedora/core/$releasever/$basearch/os
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/$releasever/$basearch/os/
[updates-released]
name=Fedora Core $releasever &#8211; $basearch &#8211; Released Updates
baseurl=ftp://alviss.et.tudelft.nl/pub/fedora/core/updates/$releasever/$basearch
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/updates/$releasever/$basearch/
Hopefull someone could use this!
]]></description>
			<content:encoded><![CDATA[<p>Today i found that the mirrors in usa not working for some reason on a fedora core 2 system of a customer, so i searched and found a newone and placed in /etc/yum.conf:<br />
<code><br />
[base]<br />
name=Fedora Core $releasever - $basearch - Base<br />
baseurl=ftp://alviss.et.tudelft.nl/pub/fedora/core/$releasever/$basearch/os<br />
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/$releasever/$basearch/os/</code></p>
<p>[updates-released]<br />
name=Fedora Core $releasever &#8211; $basearch &#8211; Released Updates<br />
baseurl=ftp://alviss.et.tudelft.nl/pub/fedora/core/updates/$releasever/$basearch<br />
#baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/updates/$releasever/$basearch/<br />
Hopefull someone could use this!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/fedora-core-2-repository.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup mysql with many tables &gt;1000</title>
		<link>http://blog.cauwenbergh.be/linux/backup-mysql-with-many-tables-1000.html</link>
		<comments>http://blog.cauwenbergh.be/linux/backup-mysql-with-many-tables-1000.html#comments</comments>
		<pubDate>Sat, 07 Jul 2007 11:04:10 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=29</guid>
		<description><![CDATA[When your mysql has many tables you could get an error of LOCK TABLES to solve this you can try two things:
1) use the option &#8211;skip-lock-tables in mysqldump
2) edit /etc/my.cfg and add following line under category [mysqld]:  open_files_limit=16384
After 2 restart mysql!
]]></description>
			<content:encoded><![CDATA[<p>When your mysql has many tables you could get an error of LOCK TABLES to solve this you can try two things:</p>
<p>1) use the option &#8211;skip-lock-tables in mysqldump</p>
<p>2) edit /etc/my.cfg and add following line under category [mysqld]: <font face="arial, verdana, tahoma" size="2"> open_files_limit=16384</font></p>
<p>After 2 restart mysql!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/backup-mysql-with-many-tables-1000.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Could not bind 0.0.0.0:443</title>
		<link>http://blog.cauwenbergh.be/linux/could-not-bind-0000443.html</link>
		<comments>http://blog.cauwenbergh.be/linux/could-not-bind-0000443.html#comments</comments>
		<pubDate>Thu, 05 Jul 2007 07:49:50 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=28</guid>
		<description><![CDATA[login su in server
#fuser 443/tcp
443/tcp: xxxx yyyy zzzz &#60;- proceses using 443
#kill -9 xxxx yyyy xxxx
#service httpd start
]]></description>
			<content:encoded><![CDATA[<p>login su in server</p>
<p>#fuser 443/tcp<br />
443/tcp: xxxx yyyy zzzz &lt;- proceses using 443</p>
<p>#kill -9 xxxx yyyy xxxx<br />
#service httpd start</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/could-not-bind-0000443.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Final: backupserver is running!</title>
		<link>http://blog.cauwenbergh.be/no-category/final-backupserver-is-running.html</link>
		<comments>http://blog.cauwenbergh.be/no-category/final-backupserver-is-running.html#comments</comments>
		<pubDate>Fri, 29 Jun 2007 18:35:56 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Dutchzone]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[No Category]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=26</guid>
		<description><![CDATA[The beginning was not so good, 3-ware card was not recognized by CentOS 5 neither 4! So after searching a couple of hours and found the right device drivers we could start the install!  So far so good, we have a system with 6 x SATA 320GB in raid 5 so we have 1,45TB [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.cauwenbergh.be/wp-content/uploads/2007/06/sc826tq-r800lpv_spec.jpg" alt="supermicro 2U S826" align="left" height="101" width="118" />The beginning was not so good, 3-ware card was not recognized by CentOS 5 neither 4! So after searching a couple of hours and found the right device drivers we could start the install!  So far so good, we have a system with 6 x SATA 320GB in raid 5 so we have 1,45TB of diskspace available for backup on six disks! The system: a supermicro server with 12 bays for hardisks&#8230;</p>
<p>Now installing quota and ftp so the system could work as meant!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/no-category/final-backupserver-is-running.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
