<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Open Source and Tech &#124; Where I Learn and Share</title>
	<link>http://www.mazuhan.com</link>
	<description>Open Source and Tech &#124; Where I Learn and Share</description>
	<pubDate>Fri, 24 Oct 2008 03:19:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Mazuhan dot com kembali online</title>
		<link>http://www.mazuhan.com/general/mazuhan-dot-com-kembali-online/</link>
		<comments>http://www.mazuhan.com/general/mazuhan-dot-com-kembali-online/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 03:14:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/general/mazuhan-dot-com-kembali-online/</guid>
		<description><![CDATA[Sudah lama blog ini terbengkalai disebabkan oleh masalah teknikal yang tidak dapat dielakkan.
Pertamanya saya sudah beralih kerjaya dimana sebelum ini sebagai pengurus teknikal disebuah IT firm dan dikini sepenuh masa bekerja dari rumah.
Kedua ruang ligkup dan kerjaya masih sama cuma fokus sekarang lebih kepada pemasaran internet. Inilah kerjaya yang diangankan-angankan sudah sekian lama.
Sudah semestinya arah [...]]]></description>
			<content:encoded><![CDATA[<p>Sudah lama blog ini terbengkalai disebabkan oleh masalah teknikal yang tidak dapat dielakkan.</p>
<p>Pertamanya saya sudah beralih kerjaya dimana sebelum ini sebagai pengurus teknikal disebuah IT firm dan dikini sepenuh masa bekerja dari rumah.</p>
<p>Kedua ruang ligkup dan kerjaya masih sama cuma fokus sekarang lebih kepada pemasaran internet. Inilah kerjaya yang diangankan-angankan sudah sekian lama.</p>
<p>Sudah semestinya arah tuju blog ini juga akan bebeza dari segi kandungan, tema, bahasa dan niche dan tak lupa juga blog ini sekarang sudah dipindahkan ke server baru dan juga data center yang baru iaitu di <a href="http://www.aims.com.my/" target="_blank">AIMS</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/general/mazuhan-dot-com-kembali-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySql Error (1250) : Client does not support authentication protocol</title>
		<link>http://www.mazuhan.com/mysql/error-1250-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client/</link>
		<comments>http://www.mazuhan.com/mysql/error-1250-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client/#comments</comments>
		<pubDate>Sun, 11 May 2008 18:05:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[MySql]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/mysql/error-1250-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client/</guid>
		<description><![CDATA[Starting from version 4.1.x of MySQL and above, an authentication protocol based on a password hashing algorithm that is incompatible with that used by older MySql clients. 
So the older mysql clients cannot talk to the newer MySql servers because of the disparity in authentication methods. 
Any attempts to connect to it with an older [...]]]></description>
			<content:encoded><![CDATA[<p>Starting from version 4.1.x of MySQL and above, an authentication protocol based on a password hashing algorithm that is incompatible with that used by older MySql clients. </p>
<p>So the older mysql clients cannot talk to the newer MySql servers because of the disparity in authentication methods. </p>
<p>Any attempts to connect to it with an older client may fail with the following message: </p>
<pre class="codesnp">Error (1250) : Client does not support authentication protocol requested by server; consider upgrading MySQL client </pre>
<p></p>
<p>I don&#8217;t want to recompiling php with the new mysql client libraries but what I did is reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the SET PASSWORD statement and the OLD_PASSWORD()&#160; function:</p>
<p></p>
<pre class="console"># mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
mysql&gt; UPDATE mysql.user
    -&gt; SET password=OLD_PASSWORD('yourpasswd')
    -&gt; WHERE user='root'
    -&gt; AND host='localhost';
Query OK, 1 row affected (0.07 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql&gt; flush privileges;
Query OK, 0 rows affected (0.04 sec)</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/mysql/error-1250-client-does-not-support-authentication-protocol-requested-by-server-consider-upgrading-mysql-client/feed/</wfw:commentRss>
		</item>
		<item>
		<title>qmail-smtpd Listen On 2 Different Ports</title>
		<link>http://www.mazuhan.com/email/qmail-smtpd-listen-on-2-different-ports/</link>
		<comments>http://www.mazuhan.com/email/qmail-smtpd-listen-on-2-different-ports/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 21:54:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/email/qmail-smtpd-listen-on-2-different-ports/</guid>
		<description><![CDATA[My previous posting regarding smtp port 25 blocked by tmnet where TM will block OUTBOUND Simple Mail Transfer Protocol (SMTP) traffic or port 25 for all outgoing e-mails from streamyx dynamic IP addresses.
For those running qmail server, this is the way how to configure qmail-smtpd to listen on another port 587 instead of default port [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://www.mazuhan.com/email/no-more-private-smtp-server-port-25-blocked-by-tmnet/">previous posting</a> regarding smtp port 25 blocked by <a href="http://www.streamyx.com.my/whats_new/whats_new.php?id=article_20080311">tmnet</a> where TM will block OUTBOUND Simple Mail Transfer Protocol (SMTP) traffic or port 25 for all outgoing e-mails from streamyx dynamic IP addresses.</p>
<p>For those running qmail server, this is the way how to configure qmail-smtpd to listen on another port 587 instead of default port 25. In other word qmail-smtpd will listen on 2 different ports, 25 and 587.</p>
<p>First we copy /var/qmail/supervise/qmail-smtpd to /var/qmail/supervise/qmail-smtpd2 and edit the run script located in the qmail-smtpd2 directory and change the smtp port to 587.</p>
</p>
<pre class="console"># cd /var/qmail/supervise
# cp -rf qmail-smtpd qmail-smtpd2
# cd qmail-smtpd2
# vi run</pre>
<p>
 <a href="http://www.mazuhan.com/email/qmail-smtpd-listen-on-2-different-ports/#more-47" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/email/qmail-smtpd-listen-on-2-different-ports/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Apps - A Google solution for email.</title>
		<link>http://www.mazuhan.com/google/google-apps-a-google-solution-for-email/</link>
		<comments>http://www.mazuhan.com/google/google-apps-a-google-solution-for-email/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 06:11:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/google/google-apps-a-google-solution-for-email/</guid>
		<description><![CDATA[Do you know you can have a webmail for your own domain name which interface similar like gmail?   It&#8217;s powered by Google where email is more intuitive, efficient and useful.
To register : http://www.google.com/a/cpanel/domain/new and follow this instructions how to migrate from your existing boring webmail system to gmail like webmail.
Step 1: Choose a [...]]]></description>
			<content:encoded><![CDATA[<p>Do you know you can have a webmail for your own domain name which interface similar like gmail?   <br />It&#8217;s powered by Google where email is more intuitive, efficient and useful.</p>
<p>To register : <a href="http://www.google.com/a/cpanel/domain/new">http://www.google.com/a/cpanel/domain/new</a> and follow this instructions how to migrate from your existing boring webmail system to gmail like webmail.</p>
<p><strong>Step 1:</strong> Choose a domain name, I use mazuhan.com as I sign up for my domain</p>
<p><a href="http://www.mazuhan.com/images/GoogleAppsAGooglesolutionforemail_C88E/gapps1.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="79" alt="gapps1" src="http://www.mazuhan.com/images/GoogleAppsAGooglesolutionforemail_C88E/gapps1_thumb.jpg" width="398" border="0" /></a> </p>
<p><strong>Step 2:</strong> Sign up for Google Apps Standard Edition</p>
<p><a href="http://www.mazuhan.com/images/GoogleAppsAGooglesolutionforemail_C88E/gapps4.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="73" alt="gapps4" src="http://www.mazuhan.com/images/GoogleAppsAGooglesolutionforemail_C88E/gapps4_thumb.jpg" width="434" border="0" /></a>     <br />To get started with Google Apps Standard Edition, you will need to fill out a few details about number of users, account administrator details and organization info.</p>
<p> <a href="http://www.mazuhan.com/google/google-apps-a-google-solution-for-email/#more-46" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/google/google-apps-a-google-solution-for-email/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Install Awstats In Centos/RedHat/Fedora</title>
		<link>http://www.mazuhan.com/linux/how-to-install-awstats-in-centosredhatfedora/</link>
		<comments>http://www.mazuhan.com/linux/how-to-install-awstats-in-centosredhatfedora/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 13:42:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/linux/how-to-install-awstats-in-centosredhatfedora/</guid>
		<description><![CDATA[By default Centos 4 doesn’t have awstats.
Running yum install awstats, unable to detect awstats installation as it’s not default base and updates repositories from Centos.In order to overcome this issue, I installed another repositories which is RPMForge.
Installing RPMForge is quite easy. In this case my Centos distro is Centos 4 version.
First we have to install [...]]]></description>
			<content:encoded><![CDATA[<p>By default Centos 4 doesn’t have awstats.
<p>Running yum install awstats, unable to detect awstats installation as it’s not default base and updates repositories from Centos.<br />In order to overcome this issue, I installed another repositories which is RPMForge.
<p>Installing RPMForge is quite easy. In this case my Centos distro is Centos 4 version.
<p>First we have to install yum-plugin-priorities<br /> 
<pre class="console"># yum install yum-plugin-priorities</pre>
<p></p>
<p>To be able to use this plugin, we must enable plugins in our /etc/yum.conf file.</p>
<p> <a href="http://www.mazuhan.com/linux/how-to-install-awstats-in-centosredhatfedora/#more-43" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/linux/how-to-install-awstats-in-centosredhatfedora/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sync Linux Server Time with NTP Daemon</title>
		<link>http://www.mazuhan.com/linux/sync-linux-server-time-with-ntp-daemon/</link>
		<comments>http://www.mazuhan.com/linux/sync-linux-server-time-with-ntp-daemon/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 05:10:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux System Administration]]></category>

		<category><![CDATA[Linux Time Sync]]></category>

		<category><![CDATA[NTP Daemon]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/linux/sync-linux-server-time-with-ntp-daemon/</guid>
		<description><![CDATA[I have web server which serving forum service and it&#8217;s powered with few linux web server boxes.
Time accuracy for the forum posting for each server is quite critical. If not, all posting from different server will be mess up.
To keep server time in sync for all servers I install NTP daemon and here is what [...]]]></description>
			<content:encoded><![CDATA[<p>I have web server which serving forum service and it&#8217;s powered with few linux web server boxes.</p>
<p>Time accuracy for the forum posting for each server is quite critical. If not, all posting from different server will be mess up.</p>
<p>To keep server time in sync for all servers I install NTP daemon and here is what the step taken on my Linux box :</p>
<ol>
<li>Install the ntp service if it&#8217;s not already installed.     </p>
<pre class="console"># yum install ntp</pre>
<p></li>
<li>Both UDP port 123 have to be open for incoming and outgoing on the firewall. </li>
<li>Find a reliable close ntp pool server. For default installation ntp server should be
<pre class="codesnp">server 0.pool.ntp.org
server 1.pool.ntp.org
server 2.pool.ntp.org</pre>
</li>
</ol>
<p> <a href="http://www.mazuhan.com/linux/sync-linux-server-time-with-ntp-daemon/#more-37" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/linux/sync-linux-server-time-with-ntp-daemon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quickest and Easy Method Securing Your SSHD</title>
		<link>http://www.mazuhan.com/security/quickest-and-easy-method-securing-your-sshd/</link>
		<comments>http://www.mazuhan.com/security/quickest-and-easy-method-securing-your-sshd/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 07:34:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[linux ssh]]></category>

		<category><![CDATA[opensshd]]></category>

		<category><![CDATA[securing sshd]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/security/quickest-and-easy-method-securing-your-sshd/</guid>
		<description><![CDATA[OpenSSH is a FREE version of the SSH and often it&#8217;s default ssh server for most linux distros.
To enhance sshd security, you can follow these quickest and easy method to better protect your linux box.
1. Secure your sshd_config
First of all you want to further secure your sshd_config file and can be found in /etc/ssh/ directory.
#cd [...]]]></description>
			<content:encoded><![CDATA[<p>OpenSSH is a FREE version of the SSH and often it&#8217;s default ssh server for most linux distros.</p>
<p>To enhance sshd security, you can follow these quickest and easy method to better protect your linux box.</p>
<p><strong>1. Secure your sshd_config</strong></p>
<p>First of all you want to further secure your sshd_config file and can be found in /etc/ssh/ directory.</p>
<pre class="console">#cd /etc/ssh
#vi sshd_config
</pre>
<p></p>
<p><strong>Disable root login:<br /></strong>Never login as a root and instead use normal user to login then become as root by issuing su command.</p>
<p>Now find the line PermitRootLogin , and if it&#8217;s says PermitRootLogin no then you already safe from root login, otherwise change from yes to no.</p>
<p><strong>Change sshd port number:<br /></strong>Default sshd port number is 22. You can change it to any random 4 or 5 digit number. Example change to 2925</p>
<p>Find where it says: <strong>Port 22</strong> and change it to <strong>Port 2925.</strong></p>
<p><strong>Binding to SSH version 2:<br /></strong>Find this line <strong>Protocol 2,1</strong> and change it to <strong>Protocol 2 </strong>to allow access to ssh version 2. It&#8217;s more secure than ssh version 1.</p>
<p>Save the new changes and make it effect by issue this command</p>
<pre class="console"># /etc/rc.d/init.d/sshd restart</pre>
<p></p>
<p><strong>2. Use tcp wrappers</strong></p>
<p>Second method is using tcp wrappers hosts.allow and hosts.deny files in /etc directory to only allow from trusted host to access ssh server.</p>
<p>Lets say your trusted host is 192.168.2.5, then your hosts.deny/hosts.allow example :</p>
<pre class="console"># vi /etc/hosts.allow
sshd: 192.168.2.5</pre>
<p></p>
<p>
<pre class="console">#vi /etc/hosts.deny
sshd: ALL</pre>
</p>
<p>Your can replace this with your specific ip or your trusted host ip. Save the changes you have made.</p>
<p>By implementing these methods, at least your sshd can be more protected instead of leaving you sshd server default installation wide open to outsider.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/security/quickest-and-easy-method-securing-your-sshd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Automatically Start Linux Daemons and Services</title>
		<link>http://www.mazuhan.com/linux/automatically-start-linux-daemons-and-services/</link>
		<comments>http://www.mazuhan.com/linux/automatically-start-linux-daemons-and-services/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 09:18:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[centos linux installation]]></category>

		<category><![CDATA[centos linux start up]]></category>

		<category><![CDATA[Linux Daemons]]></category>

		<category><![CDATA[start linux service]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/linux/automatically-start-linux-daemons-and-services-2/</guid>
		<description><![CDATA[Normally after I finish installing the Linux OS in my machine, the first sport check I often go through is checking what are service daemons to be enable or disable during boot time. It&#8217;s due to Red Hat / Centos come with a lot of services that are pre-configured to run at boot. It&#8217;s also [...]]]></description>
			<content:encoded><![CDATA[<p>Normally after I finish installing the Linux OS in my machine, the first sport check I often go through is checking what are service daemons to be enable or disable during boot time. It&#8217;s due to Red Hat / Centos come with a lot of services that are pre-configured to run at boot. It&#8217;s also to determine that I&#8217;m not running unnecessary services that are simply sucking up my precious CPU time and my server resources.</p>
<p>To enable or disable linux daemons and services at boot time on Red Hat/Centos, in your linux console ( after become a su ), I just issue this command :</p>
</p>
<pre class="console">[root@xxxx xxxx]# setup</pre>
</p>
<p></p>
<p>From <strong>Choose a Tool</strong> menu, select the <strong>System services</strong> &#8211;&gt; <strong>Run Tool</strong> to access the <strong>Services</strong> menu as below.</p>
<p><a href="http://www.mazuhan.com/images/AutomaticallyStartLinuxDaemonsandService_BFDC/servicesetup.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="328" alt="service-setup" src="http://www.mazuhan.com/images/AutomaticallyStartLinuxDaemonsandService_BFDC/servicesetup_thumb.jpg" width="432" border="0" /></a> </p>
<p>The following is a list based on one of my testing machine and some of the services may not listed here. </p>
<p> <a href="http://www.mazuhan.com/linux/automatically-start-linux-daemons-and-services/#more-24" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/linux/automatically-start-linux-daemons-and-services/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What Blogs I Regularly Visit</title>
		<link>http://www.mazuhan.com/internet-marketing/what-sites-i-regularly-visit/</link>
		<comments>http://www.mazuhan.com/internet-marketing/what-sites-i-regularly-visit/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 02:27:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Internet Marketing]]></category>

		<category><![CDATA[make money blog]]></category>

		<category><![CDATA[moneytize blog]]></category>

		<category><![CDATA[popular blogs]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/internet-marketing/what-sites-i-regularly-visit/</guid>
		<description><![CDATA[What are blogs you regularly visit? As making online money is major concern for problogger or semiproblogger, here is the list of blogs I read and visit them regularly.

Liew CF
Gobala
lilian aka 5xmom
salam pantai timur
sabahan
wang cyber

If you know any good blog, please post a comment ..
]]></description>
			<content:encoded><![CDATA[<p>What are blogs you regularly visit? As making online money is major concern for problogger or semiproblogger, here is the list of blogs I read and visit them regularly.</p>
<ul>
<li><a href="http://www.liewcf.com">Liew CF</a></li>
<li><a href="http://www.gobalakrishnan.com/">Gobala</a></li>
<li><a href="http://www.5xmom.com/">lilian aka 5xmom</a></li>
<li><a href="http://www.salampantaitimur.com">salam pantai timur</a></li>
<li><a href="http://www.sabahan.com">sabahan</a></li>
<li><a href="http://www.wangcyber.com">wang cyber</a></li>
</ul>
<p>If you know any good blog, please post a comment ..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/internet-marketing/what-sites-i-regularly-visit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Email Server with Linux and Qmail</title>
		<link>http://www.mazuhan.com/linux/email-server-with-linux-and-qmail/</link>
		<comments>http://www.mazuhan.com/linux/email-server-with-linux-and-qmail/#comments</comments>
		<pubDate>Sun, 16 Dec 2007 17:38:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Web Hosting]]></category>

		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://www.mazuhan.com/linux/email-server-with-linux-and-qmail/</guid>
		<description><![CDATA[Web hosting preview for email solution    Email services in todays ICT world is one of must have for every company regardless of small, medium or enterprise the company is.
Linux and open source software is one of the best option in term of software costing, stability and reliability. Mail transfer agent (MTA) like [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Web hosting preview for email solution</strong>    <br />Email services in todays ICT world is one of must have for every company regardless of small, medium or enterprise the company is.</p>
<p>Linux and open source software is one of the best option in term of software costing, stability and reliability. Mail transfer agent (MTA) like Qmail, Sendmail, Posfix or Exim is among the popular one and I prefer to use&#160; qmail to powered my email servers.</p>
<p><strong>Why qmail?     <br /></strong><a href="http://www.qmail.org">Qmail</a> is a sendmail replacement and is among the five most popular Unix mail servers on the Internet.</p>
<p>As the nature of open source, email server solution come with another handy software packages to complement with the qmail and it&#8217;s free of charge.</p>
<p><strong>Qmail Ingredient     <br /></strong>The installation and setup of a qmail based mail server requires list of softwares to work together and once again I remind you, all of the software listed below is free from software licensing fees.</p>
<p> <a href="http://www.mazuhan.com/linux/email-server-with-linux-and-qmail/#more-18" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mazuhan.com/linux/email-server-with-linux-and-qmail/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
