<?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>Computer Plumber</title>
	<atom:link href="http://computerplumber.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://computerplumber.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 02:54:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to change the default SSH port in Lion</title>
		<link>http://computerplumber.com/2012/01/how-to-change-the-default-ssh-port-in-lion/</link>
		<comments>http://computerplumber.com/2012/01/how-to-change-the-default-ssh-port-in-lion/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 02:51:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Leopard Server]]></category>
		<category><![CDATA[Lion Server]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=687</guid>
		<description><![CDATA[So you don&#8217;t want to have your remote login port (ssh port) on your Lion server setup to port 22. You can easily change the listening port doing the following 2 steps. There is no need to add another service. First you will need to edit your Lion Services file: sudo nano /etc/services Search for [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/how-to-change-the-default-ssh-port-in-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Directory Users on Lion Cannot Change Passwords</title>
		<link>http://computerplumber.com/2012/01/open-directory-users-on-lion-cannot-change-passwords/</link>
		<comments>http://computerplumber.com/2012/01/open-directory-users-on-lion-cannot-change-passwords/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 20:42:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Directory Services]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Lion Server]]></category>
		<category><![CDATA[Open Directory]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=680</guid>
		<description><![CDATA[We recently ran into an issue with Open Directory Users on Apple&#8217;s OSX Lion. Users were not able to change their passwords using the web interface on a fresh install of Lion with Open Directory. The error we were receiving is below: com.apple.passwordreset (2012-01-20 14:00:09,100): Could not change password for user (johnsmith) com.apple.passwordreset (2012-01-20 14:00:09,104): [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/open-directory-users-on-lion-cannot-change-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP script to automate file transfers to remote server</title>
		<link>http://computerplumber.com/2012/01/ftp-script-to-automate-file-transfers/</link>
		<comments>http://computerplumber.com/2012/01/ftp-script-to-automate-file-transfers/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 03:22:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=670</guid>
		<description><![CDATA[Below you will find a FTP script that will allow you to automate your files transfers without requiring any user input. The only problem with this method is you will be putting a username and password into the script file, but having a simple automated FTP file upload or FTP file download probably outweighs the [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/ftp-script-to-automate-file-transfers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache redirect for wildcard domains</title>
		<link>http://computerplumber.com/2012/01/apache-redirect-for-wildcard-domains/</link>
		<comments>http://computerplumber.com/2012/01/apache-redirect-for-wildcard-domains/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 23:40:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[redirects]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=660</guid>
		<description><![CDATA[We recently had to redirect a wildcard domain to another wildcard domain using Apache redirects. It is assumed you have already enabled mod_rewrite, if not make sure you enable that apache module before you try adding this rule. RewriteEngine On RewriteRule ^([A-Za-z0-9-]+)\.domain1\.com?$ http://%1.domain2.com$1 Now there are certainly other versions of this rule (add below), but [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2012/01/apache-redirect-for-wildcard-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinSCP program for Mac</title>
		<link>http://computerplumber.com/2010/01/winscp-program-for-mac/</link>
		<comments>http://computerplumber.com/2010/01/winscp-program-for-mac/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[winSCP]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=652</guid>
		<description><![CDATA[WinSCP is a great program for Windows that will give you a GUI interface to manage files on a remote server when all you can use to connect is SSH. Having grown fond of this program a colleague was sad to find there was no version for MAC. After playing with several different options, they [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2010/01/winscp-program-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Postgresql Cron Backup</title>
		<link>http://computerplumber.com/2010/01/simple-postgresql-cron-backup/</link>
		<comments>http://computerplumber.com/2010/01/simple-postgresql-cron-backup/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 16:55:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Postgresql]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=648</guid>
		<description><![CDATA[Here is a very simple method to backup your postgresql DB using a cron job and the pg_dump command. The main problem people encounter when trying to automate the pg_dump command is the password input. Now you could easily create a local user with no password, but why would you want to do that. The [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2010/01/simple-postgresql-cron-backup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Mongrel with Ruby 1.9</title>
		<link>http://computerplumber.com/2009/08/installing-mongrel-with-ruby19/</link>
		<comments>http://computerplumber.com/2009/08/installing-mongrel-with-ruby19/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 15:27:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=635</guid>
		<description><![CDATA[Installing mongrel on ruby 1.9 has caused problems for many different people as has been reported on isitruby19.com. Running gem install mongrel produces the following error. http11.c: In function &#8216;http_field&#8217;: http11.c:77: error: &#8216;struct RString&#8217; has no member named &#8216;ptr&#8217; http11.c:77: error: &#8216;struct RString&#8217; has no member named &#8216;len&#8217; http11.c:77: warning: left-hand operand of comma expression [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/08/installing-mongrel-with-ruby19/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing MySQL gem for Ruby 1.9.x</title>
		<link>http://computerplumber.com/2009/07/installing-mysql-gem-for-ruby-1-9-x/</link>
		<comments>http://computerplumber.com/2009/07/installing-mysql-gem-for-ruby-1-9-x/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 19:53:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=625</guid>
		<description><![CDATA[As of this writing, the MYSQL gem cannot be installed by simply doing a GEM INSTALL with ruby 1.9.1. In order to install the gem, follow these easy steps. First download the mysql gem from rubyforge, and unzip it: sudo wget http://rubyforge.org/frs/download.php/51087/mysql-ruby-2.8.1.tar.gz sudo tar -xzvf mysql-ruby-2.8.1.tar.gz cd mysql-ruby-2.8.1 Now, you will need to compile the [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/07/installing-mysql-gem-for-ruby-1-9-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace Ruby 1.8.x with version 1.9.x</title>
		<link>http://computerplumber.com/2009/07/replace-ruby-1-8-x-with-version-1-9-x/</link>
		<comments>http://computerplumber.com/2009/07/replace-ruby-1-8-x-with-version-1-9-x/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 17:54:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=623</guid>
		<description><![CDATA[We recently replaced ruby 1.8.6 on a Ubuntu 8.04 Server with Ruby 1.9.1. Follow these steps to remove the old ruby from the system, but be warned that it may not be as simple for you. First thing was to remove the old ruby1.8. We had installed this from the Ubuntu package installer so removing [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/07/replace-ruby-1-8-x-with-version-1-9-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Routine for Spyware and Viruses Removal</title>
		<link>http://computerplumber.com/2009/07/good-routine-for-spyware-and-viruses-removal/</link>
		<comments>http://computerplumber.com/2009/07/good-routine-for-spyware-and-viruses-removal/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 19:22:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[spyware]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows NT]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=614</guid>
		<description><![CDATA[Here is a list of things you can do to help diagnose and fix problems associated with viruses and spyware.  Hopefully you have been running an anti virus program and have been keeping it updated, if not then these steps can probably help fix a spyware/virus problem. Go into Add/Remove programs, and remove all unwanted [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/07/good-routine-for-spyware-and-viruses-removal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

