<?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>TechniTip.Net &#187; tips</title> <atom:link href="http://technitip.net/tag/tips/feed" rel="self" type="application/rss+xml" /><link>http://technitip.net</link> <description>TechniTip.Net - Useful tips regarding technical stuff for things like Linux, MySQL, Apache, PHP, Linux Server, iPhone and more.</description> <lastBuildDate>Sun, 05 Sep 2010 09:32:08 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <image><link>http://technitip.net</link> <url>http://technitip.net/wp-content/plugins/maxblogpress-favicon/icons/favicon-66.ico</url><title>TechniTip.Net</title> </image> <item><title>MySQL Performance Tips</title><link>http://technitip.net/mysql-performance-tips</link> <comments>http://technitip.net/mysql-performance-tips#comments</comments> <pubDate>Sun, 11 Jan 2009 11:20:05 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[PHP/MySQL]]></category> <category><![CDATA[my.cnf]]></category> <category><![CDATA[mysql]]></category> <category><![CDATA[performance]]></category> <category><![CDATA[tips]]></category> <category><![CDATA[tuning]]></category><guid isPermaLink="false">http://technitip.net/?p=336</guid> <description><![CDATA[Optimizing a MySQL server is probably not very easy. It depends on your database structure, how many users are accessing your server and so on. Basics But there are a few things which could help to improve your performance. On my configuration I&#8217;ve added skip-name-resolve in my.cnf: [mysqld] skip-name-resolve Now the MySQL server will not [...]<div style="clear: both;"> <strong>Related posts:</strong><ol><li><a href='http://technitip.net/windows-7-performance-tuning' rel='bookmark' title='Permanent Link: Windows 7 Performance Tuning'>Windows 7 Performance Tuning</a></li><li><a href='http://technitip.net/mysql-optimize-script' rel='bookmark' title='Permanent Link: MySQL Optimize Script'>MySQL Optimize Script</a></li><li><a href='http://technitip.net/apache-tuning-part-1' rel='bookmark' title='Permanent Link: Apache Tuning Part 1'>Apache Tuning Part 1</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>Optimizing a MySQL server is probably not very easy. It depends on your database structure, how many users are accessing your server and so on.</p><p><strong>Basics</strong></p><p>But there are a few things which could help to improve your performance. On my configuration I&#8217;ve added skip-name-resolve in my.cnf:</p><pre>[mysqld]
skip-name-resolve</pre><p>Now the MySQL server will not do any DNS name resolves. Please note that permissions based on hostnames will no longer work!</p><p>For security reasons I would also recommend binding only to the localhost address. Using this the MySQL server is not reachable on the Ethernet interface. In earlier version of MySQL this was usually done with the skip-networking parameter.</p><pre>[mysqld]
bind-address    = 127.0.0.1</pre><p>And I&#8217;ve added skip-external-locking and skip-locking:</p><pre>[mysqld]

skip-external-locking
skip-locking</pre><p>This could also improve your performance.</p><p><strong>Search Length</strong></p><p>For text search queries with a allowed length of 2 characters add this line:</p><pre>ft_min_word_len="2"</pre><p>Otherwise default minimum length is 3 characters, which means that a search query &#8220;select * like &#8216;%AB%&#8217;&#8221; will never return any data.</p><p><strong>Cache Settings</strong></p><p>Caching seems to be a very important thing when optimizing your server. My feeling is that the standard configuration of a MySQL server is not really designed for machines with 1 GByte memory or above.</p><p>Below is my configuration, with a few cache settings increased.</p><pre>[mysqld]
query_cache_limit    =  1M
query_cache_size     = 32M
thread_cache_size    =  8
join_buffer          =  1M
table_cache          = 16M
sort_buffer_size     =  2M
read_buffer_size     =  2M
read_rnd_buffer_size =  2M
tmp_table_size       = 48M
max_allowed_packet   = 16M
thread_stack         = 128K
key_buffer_size      = 32M</pre><p>This configuration works on a machine with 1 GByte RAM and several databases running. Basically I recommend to increase the cache size settings. And memory helps almost always.</p><p>Applies to MySQL version: 5.0.32</p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftechnitip.net%2Fmysql-performance-tips&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 50px;"></iframe></div><div style="clear: both;"><p><strong>Related posts:</strong><ol><li><a href='http://technitip.net/windows-7-performance-tuning' rel='bookmark' title='Permanent Link: Windows 7 Performance Tuning'>Windows 7 Performance Tuning</a></li><li><a href='http://technitip.net/mysql-optimize-script' rel='bookmark' title='Permanent Link: MySQL Optimize Script'>MySQL Optimize Script</a></li><li><a href='http://technitip.net/apache-tuning-part-1' rel='bookmark' title='Permanent Link: Apache Tuning Part 1'>Apache Tuning Part 1</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://technitip.net/mysql-performance-tips/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Essential Security Tips for Windows XP</title><link>http://technitip.net/essential-security-tips-for-windows-xp</link> <comments>http://technitip.net/essential-security-tips-for-windows-xp#comments</comments> <pubDate>Thu, 01 Jan 2009 21:18:04 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[security]]></category> <category><![CDATA[tips]]></category> <category><![CDATA[windows]]></category> <category><![CDATA[xp]]></category><guid isPermaLink="false">http://technitip.net/?p=125</guid> <description><![CDATA[My personal recommendations for secure internet usage are easy and help a lot to avaid getting infected with unwanted software like a virus or trojaner. So take the following tips to heart: Activate Windows update and always install the updates Use a firewall/router. Best case is e.g. a hardware DSL router. If now hardware firewall [...]<div style="clear: both;"> <strong>Related posts:</strong><ol><li><a href='http://technitip.net/cisco-vpn-and-windows-xpvista7-64bit' rel='bookmark' title='Permanent Link: Cisco VPN and Windows XP/Vista/7 64bit'>Cisco VPN and Windows XP/Vista/7 64bit</a></li><li><a href='http://technitip.net/windows-7-performance-tuning' rel='bookmark' title='Permanent Link: Windows 7 Performance Tuning'>Windows 7 Performance Tuning</a></li><li><a href='http://technitip.net/automated-windows-backups' rel='bookmark' title='Permanent Link: Automated Windows Backups'>Automated Windows Backups</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>My personal recommendations for secure internet usage are easy and help a lot to avaid getting infected with unwanted software like a virus or trojaner. So take the following tips to heart:</p><ul><li>Activate <strong>Windows update</strong> and always install the updates</li><li>Use a <strong>firewall/router</strong>. Best case is e.g. a hardware DSL router. If now hardware firewall can be used activate at least the Windows firewall</li><li>Use a secure browser and mail reader like <strong>Firefox</strong> and <strong>Thunderbird</strong></li><li>Install a <strong>virus scanner</strong> which automatically updates it&#8217;s signatures</li></ul><p>Using this few tips you are already quite secure and it&#8217;s not much effort.</p><div id="facebook_like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Ftechnitip.net%2Fessential-security-tips-for-windows-xp&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 50px;"></iframe></div><div style="clear: both;"><p><strong>Related posts:</strong><ol><li><a href='http://technitip.net/cisco-vpn-and-windows-xpvista7-64bit' rel='bookmark' title='Permanent Link: Cisco VPN and Windows XP/Vista/7 64bit'>Cisco VPN and Windows XP/Vista/7 64bit</a></li><li><a href='http://technitip.net/windows-7-performance-tuning' rel='bookmark' title='Permanent Link: Windows 7 Performance Tuning'>Windows 7 Performance Tuning</a></li><li><a href='http://technitip.net/automated-windows-backups' rel='bookmark' title='Permanent Link: Automated Windows Backups'>Automated Windows Backups</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://technitip.net/essential-security-tips-for-windows-xp/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>