<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://am3n.profusehost.net/rss/rss20.xsl" type="text/xsl"?>


<!-- generator="boastMachine v3.1 , http://boastology.com" -->
<rss version=".92">
 <channel>
	<title>[am3nblog]</title>
	<link>http://am3n.profusehost.net/index.php</link>
	<description>This is am3n's blog </description>
	<language>en</language>
	<docs>http://backend.userland.com/rss092</docs>
    <item>
      <title><![CDATA[Another Nice Howtoforge.com Articles]]></title>
      <description><![CDATA[Below is another nice HowToForge.com's Articles. Just wonder is there any article with the same topic but using CentOS / Fedora:<br />
<ul>
<li><a target="_blank" href="http://www.howtoforge.com/subversion-trac-virtual-hosts-on-ubuntu-server">Setting Up Subversion And Trac As Virtual Hosts On An Ubuntu Server</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/openldap-samba-domain-controller-ubuntu7.10">OpenLDAP + Samba Domain Controller On Ubuntu 7.10</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/build-a-hylafax-server-with-avantfax-on-debian-etch">Build A HylaFax Server With AvantFax Frontend Using Debian Etch</a></li></ul>Now these one is using CentOS / Fedora, so it simplify my learning curve:<br />
<ul>
<li><a target="_blank" href="http://www.howtoforge.com/setting-up-a-local-yum-repository-fedora8">How To Set Up A Local Yum Repository On Fedora 8</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/network-management-monitoring-hyperic-hq-fedora8">Network Management And Monitoring With Hyperic HQ On Fedora 8</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/drbd-on-centos-4.5">Sample Configuration of DRBD On CentOS 4.5</a></li></ul>
]]></description>
      <link>http://am3n.profusehost.net/post/index/91/Another-Nice-Howtoforgecom-Articles</link>
    </item>
    <item>
      <title><![CDATA[Pending Anime List]]></title>
      <description><![CDATA[Below is the list of my pending anime list to watch (before that I have to download it first):<br />
<ul>
<li>Lucky Star</li>
<li>KimiKiss pure Rouge</li>
<li>Love Get Chu</li>
<li>Petopeto-san<br /></li></ul>
<br />
They seems pretty interesting. 

]]></description>
      <link>http://am3n.profusehost.net/post/index/90/Pending-Anime-List</link>
    </item>
    <item>
      <title><![CDATA[It's Ramadhan and I have pending blogs]]></title>
      <description><![CDATA[
Ramadhan month is here, time for Muslim to fasting. And yes sometimes I can get lazy in Ramadhan, so these are my pending blogs. After I get my spirit back, I'll put them up here<br />
<ul>
<li>Configure heartbeat on CentOS</li>
<li>Disabling mysql hostname resolve</li>
<li>Disabling ssh hostname resolve</li>
<li>Increasing bind resolve limit</li>
<li>Installing VHCS on CentOS</li>
<li>Installing Oracle DB 10g R2 on Windows 2003 Server</li></ul>Just wait.... and wait.......<br />See you.... <br /><br />Jan 9, 2007 and I am still not planning to write my pending blogs.... because I am busy.......<br /><br />Additional pending blogs<br />
<ul>
<li>Backup MySQL Replication (Slave) Server using mysql-zrm<br /></li></ul>
]]></description>
      <link>http://am3n.profusehost.net/post/index/74/Its-Ramadhan-and-I-have-pending-blogs</link>
    </item>
    <item>
      <title><![CDATA[Nice reading: Advance configuration Linux server]]></title>
      <description><![CDATA[Nice Howtos (provided by <a target="_blank" href="http://www.howtoforge.com/">Howtoforge.com</a> )<br />
<ul>
<li><a target="_blank" href="http://www.howtoforge.com/mysql_database_replication">How To Set Up Database Replication In MySQL</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/loadbalanced_mysql_cluster_debian">How To Set Up A Load-Balanced MySQL Cluster</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/high_availability_loadbalanced_apache_cluster">How To Set Up A Loadbalanced High-Availability Apache Cluster</a></li>
<li><a target="_blank" href="http://www.howtoforge.com/high_availability_nfs_drbd_heartbeat">Setting Up A Highly Available NFS Server</a></li></ul><br />Just too bad they all using Debian which I am not familiar with.<br />
]]></description>
      <link>http://am3n.profusehost.net/post/index/89/Nice-reading-Advance-configuration-Linux-server</link>
    </item>
    <item>
      <title><![CDATA[Using Maatkit to syncronize table]]></title>
      <description><![CDATA[With <a target="_blank" href="http://maatkit.sourceforge.net/">Maatkit</a>'s mysql-table-sync / mk-table-sync, I can easily synchronize between 2 tables whether it's on same database, different database or even different hosts. Below command will do the trick:<br /><br /><pre>mk-table-sync \<br />u=user1,p=pwd1,h=server1,D=rodin,t=data \<br />u=user2,p=pwd2,h=server2,D=rodin,t=dataarchives \<br />--verbose --debug --print --lock --onlydo ui --execute</pre>The command above will compare table rodin.data on server1 (source) with rodin.dataarchives on server2 (destination). If you want to test comparison (say you are not trust the command) you can remove the <span style="font-style: italic;">-<span style="font-weight: bold;">-execute</span></span> option. And if you are sure it's ok then you might want to remove options <span style="font-style: italic; font-weight: bold;">--verbose --debug --print</span>.<br /><br />The <span style="font-weight: bold; font-style: italic;">--onlydo ui</span> option mean to tell mysql-table only do update and insert on destination table without delete any record(s). If you want completely synchronize table you might dont use it.<br /><br />Now, if you try to sync table with different name, it will always prompt you like this.<br /><pre>"Source and destination table have different names.  Continue?  y/n:"<br /><br /></pre>Annoying and you can run it in shell script. So what I do is remark line 782 until 788 of /usr/bin/mk-table-sync on Maatkit version 1316.<br /><br />One thing still I dont know how is when I tried to uninstall maatkit, it displayed error:<br /><pre>----<br />Uninstall is unsafe and deprecated, the uninstallation was not performed.<br />We will show what would have been done.<br /><br />no packlist file found:  at /usr/lib/perl5/5.8.5/ExtUtils/Install.pm line<br />318.<br />make: *** [uninstall_from_sitedirs] Error 2<br />----</pre>I leave that open<br />
]]></description>
      <link>http://am3n.profusehost.net/post/index/88/Using-Maatkit-to-syncronize-table</link>
    </item>
    <item>
      <title><![CDATA[smtproutes for localmailserver]]></title>
      <description><![CDATA[Say you have another local mailserver on your site, that will only deliver email locally<br />i.e. with domain gateway.myholding.com then you can this on your /var/qmail/control/smtproutes<br /> <pre>
gateway.myholding.com:<br /> :smtp.myholding.com</pre><br />then every email destined for gateway.myholding.com will be own processed<br />and other destination will be passed to another SMTP server (in this case smtp.myholding.com)<br /><br /><a href="http://wiki.qmailtoaster.com/index.php/Smtproutes">http://wiki.qmailtoaster.com/index.php/Smtproutes</a><br />
]]></description>
      <link>http://am3n.profusehost.net/post/index/87/smtproutes-for-localmailserver</link>
    </item>
    <item>
      <title><![CDATA[WebLinks]]></title>
      <description><![CDATA[Added new script called ParticleSoft Links for my <a target="_blank" href="http://www.am3n.profusehost.net/weblinks/">Weblinks</a>. This site will hold my favorits weblinks while I surfing the web. Enjoy<br /><br />
]]></description>
      <link>http://am3n.profusehost.net/post/index/86/WebLinks</link>
    </item>
    <item>
      <title><![CDATA[RHCE Training]]></title>
      <description><![CDATA[This week (19-22 Nov, 2007) I take RHCE (RedHat Certified Engineer) training on IndoLinux. This training discuss mostly about network services that Redhat can provide and serve them correctly. And SELinux configuration. The trainer is the same trainer on my RHCT training, Andre Kusuma. Nice to be trained by him again.<br /><br />RHCE Exam will be held next month. wait and see......<br />

On Dec 17, 2007 I take exam<br />
On Dec 18, 2008 I received email from RedHat that I pass the exam and get RHCE<br />
Hooray......

]]></description>
      <link>http://am3n.profusehost.net/post/index/85/RHCE-Training</link>
    </item>
    <item>
      <title><![CDATA[My Ubuntu Blog]]></title>
      <description><![CDATA[With Ubuntu on the rise, I like to taste it how is Ubuntu. So I am end up installing it on my notebook. My Experience using Ubuntu is written on <a target="_blank" href="http://am3n.profusehost.net/ubuntu">AUX</a><br /><br />Because AUX is using Wordpress as blog script, so to faster my blogging, I am adding another Firefox extentions calld <a target="_blank" href="http://www.scribefire.com/">ScribeFire</a>]]></description>
      <link>http://am3n.profusehost.net/post/index/84/My-Ubuntu-Blog</link>
    </item>
    <item>
      <title><![CDATA[how to read apache log]]></title>
      <description><![CDATA[nice to read and a good information for web server admin on how to read httpd log<br /><br /><a target="_blank" href="http://www.linuxquestions.org/questions/slackware-14/how-to-read-the-accesslog-of-apache-53689/">How to read Apache log</a><br />
]]></description>
      <link>http://am3n.profusehost.net/post/index/83/how-to-read-apache-log</link>
    </item>
  </channel>
</rss>