<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5.1" -->
<rss version="0.92">
<channel>
	<title>Simple Thoughts - Java and Web Blog &#187; Tech Note</title>
	<link>http://blog.taragana.com</link>
	<description>News and views from a Software Architect and Entrepreneur on Java and Web 2.0</description>
	<lastBuildDate>Wed, 02 Jul 2008 17:57:23 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>How To Enable Root Account on Mac OSX</title>
		<description><![CDATA[1.  Login to the Admin account (not the normal account)
2. Open up a command shell in the Terminal application by selecting - Macintosh HD -> Applications -> Utilities -> Terminal
At the command prompt type this command:
sudo passwd root
You will then get the following prompts.
Enter Password:
Changing password for root
New password:
Verify password: 
The first password you [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/how-to-enable-root-account-on-mac-osx/</link>
			</item>
	<item>
		<title>How To Change MySQL Password</title>
		<description><![CDATA[Let&#8217;s look at all the ways to change MySQL password, for root and other users:
In MySQL the default password is empty. This is inherently unsafe and should be immediately changed. Here is how you can change MySQL default root password:

mysqladmin -u root password NEWPASSWORD

Here is how you can change OLDPASSWORD to NEWPASSWORD

mysqladmin -u LOGIN -p [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/how-to-change-mysql-password/</link>
			</item>
	<item>
		<title>Program (Source Code) to Trim Whitespaces from Files&#8230;</title>
		<description><![CDATA[PHP is not only a very competent web development language (and part of LAMP stack). It is also a very capable language for writing (command line) scripts. You can write simpler and cleaner scripts with php than perl. Here is a php code which takes a file name as input, trims whitespace from each line [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/program-source-code-to-trim-whitespaces-from-files/</link>
			</item>
	<item>
		<title>MySQL Tip: How To Check, Repair &#038; Optimize All Tables in All Databases</title>
		<description><![CDATA[Here is a simple command to auto repair, check and optimize all the tables in all databases running on a MySQL server:
mysqlcheck -u root -p --auto-repair --check --optimize --all-databases
mysqlcheck is available in MySQL 3.23.38 and later.
mysqlcheck uses the SQL statements CHECK TABLE, REPAIR TABLE, ANALYZE TABLE, and OPTIMIZE TABLE in a convenient way for the [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/mysql-tip-how-to-check-repair-optimize-all-tables-in-all-databases/</link>
			</item>
	<item>
		<title>Solution: Missing Dependency: faad2 &lt; 2.5 is needed by package ffmpeg-libs &#038; Error: vlc conflicts with faad2 &gt;= 2.5</title>
		<description><![CDATA[Have you seen the error while installing a package using yum / yumex?
Error: vlc conflicts with faad2 >= 2.5
Error: Missing Dependency: faad2 < 2.5 is needed by package ffmpeg-libs
The error is because of using freshrpms repository or other repository to install recent version of faad2. Now let&#8217;s see how you can solve it.

This is a [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/solution-missing-dependency-faad2-25-is-needed-by-package-ffmpeg-libs-error-vlc-conflicts-with-faad2-25/</link>
			</item>
	<item>
		<title>How To: Java Stack Trace in Linux</title>
		<description><![CDATA[A simple tip for newbies - how to get Java stack trace, the invaluable tool to debug java programs, in Linux:
- Type the Ctrl key followed by \, in short Ctrl \.
I just used it to debug a persistent problem where a server process which automatically fetches data from a third-party site was inexplicably hanging.
All [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/how-to-java-stack-trace-in-linux/</link>
			</item>
	<item>
		<title>Load Balancing &#038; Failover Script for Dual/ Multi WAN / ADSL / Cable Connections on Linux with Mail on failure</title>
		<description><![CDATA[Please read the original article - How To: Load Balancing &#038; Failover With Dual/ Multi WAN / ADSL / Cable Connections on Linux. It contains detailed information with a sample script. Viliam Kočinský modified my script to send email when routing table changes. Also he is starting the script as a service from /etc/init.d. Read [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/load-balancing-failover-script-for-dual-multi-wan-adsl-cable-connections-on-linux-with-mail-on-failure/</link>
			</item>
	<item>
		<title>How To Forward Local Host &#038; Port via SSH Client To Remote SSH Server</title>
		<description><![CDATA[SSH is aptly termed as poor man&#8217;s VPN. You can use it to either forward local host host name and port to a remote server running ssh daemon. You can also use it to forward remote server&#8217;s port to a local host and port.
For example you may want to make a particular host and port [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/how-to-forward-local-host-port-via-ssh-client-to-remote-ssh-server/</link>
			</item>
	<item>
		<title>Never Restart Network on Multi-ADSL Connection Machine&#8230;</title>
		<description><![CDATA[I learned it the hard way. Our gateway machine with firewall (shorewall) has multiple ADSL connections configured with load balancing for more bandwidth and transparent fail-over. Today I faced an unenviable problem where one or other of the ADSL connections were going down sometime after a network restart. It was unique because the ADSL modems [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/never-restart-network-on-multi-adsl-connection-machine/</link>
			</item>
	<item>
		<title>6 MySQL Database Replication Tips</title>
		<description><![CDATA[Replicating on two or more MySQL master database servers
1. MySQL Master-Master Replication Fails With ERROR 1200 (HY000) on Master
2. Password problem are solved by carefully checking your grant statements
3. When you have more than two master servers, you must use log-slave-updates option to ensure that changes are propagated in a chain. Beware of infinite looping [...]]]></description>
		<link>http://blog.taragana.com/index.php/archive/6-mysql-database-replication-tips/</link>
			</item>
</channel>
</rss>
