<?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>Dahlin Development - Blog &#187; Tips</title>
	<atom:link href="http://blog.dahlindevelopment.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dahlindevelopment.com</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 14:17:17 +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>MS SQL and MySQL Database Backups on Rackspace Cloud</title>
		<link>http://blog.dahlindevelopment.com/2010/10/ms-sql-and-mysql-database-backups-on-rackspace-cloud/</link>
		<comments>http://blog.dahlindevelopment.com/2010/10/ms-sql-and-mysql-database-backups-on-rackspace-cloud/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 01:37:45 +0000</pubDate>
		<dc:creator>Jessica</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MS SQL]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Rackspace Cloud]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://blog.dahlindevelopment.com/?p=316</guid>
		<description><![CDATA[Recently, I was asked to setup an automatic database backup process for some cloud sites.  Not having much experience with database backup, let alone setting up an automatic process.  I plowed ahead on the project. I was directed to this link for the MS SQL Databases: http://cloudsites.rackspacecloud.com/index.php/How_can_I_create_a_cron_job_to_backup_my_MSSQL_database%3F Following the above link was more than helpful.  [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I was asked to setup an automatic database backup process for some cloud sites.  Not having much experience with database backup, let alone setting up an automatic process.  I plowed ahead on the project.</p>
<p>I was directed to this link for the MS SQL Databases: <a href="http://cloudsites.rackspacecloud.com/index.php/How_can_I_create_a_cron_job_to_backup_my_MSSQL_database%3F">http://cloudsites.rackspacecloud.com/index.php/How_can_I_create_a_cron_job_to_backup_my_MSSQL_database%3F</a></p>
<p>Following the above link was more than helpful.  Although, I still ran into an error after running through the directions.  “curl: (6) Couldn’t resolve host ‘backupdb.asp’ ”  My first mistake was, I was using the linux path instead of the windows unc path in the backup.asp file.  My second mistake was I didn’t enter a full url for the command to run in the cron job setup.  After fixing those simple mishaps, I now have an automatic backup running for my sites.</p>
<p>For MySQL Databases, I was directed to this site: <a href="http://cloudsites.rackspacecloud.com/index.php/How_do_I_create_a_cron_job_to_backup_my_MySQL_database%3F">http://cloudsites.rackspacecloud.com/index.php/How_do_I_create_a_cron_job_to_backup_my_MySQL_database%3F</a></p>
<p>I can’t say that I’m at all familiar with shell scripting or that I even know what the code is really doing.  For the MySQL Database process I did wonder off the directed path and had found another backup tool, phpMyBackupPro (http://www.phpmybackuppro.net/).  This tool can be easily installed on your site and will create an automatic backup for you.  Using this tool for multiple sites isn’t what it was designed for, unless you want to install this tool on each site.  No thank you.</p>
<p>After that little adventure, I got back on my directed path.  The error I found this time was “No such file or directory”.  After reviewing the shell script multiple times, I couldn’t find anything wrong.  I did some searching and found this:</p>
<p>#!/bin/bash<br />
Backupdir= *******.com/backups<br />
backupfile=`date +backup-%d-%m-%y_%H.sql`<br />
tarfile=mysqlbackup.tar<br />
cd $backupdir<br />
mysqldump &#8211;opt -A -h ******** &#8211;password=****** -u ******* &gt; $backupfile<br />
gunzip &#8220;$tarfile&#8221;.gz<br />
tar rf $tarfile $backupfile &amp;&gt; /dev/null<br />
gzip $tarfile<br />
rm $backupfile</p>
<p><em>*replace the “*” with actual information</em></p>
<p>I plugged in the information for the script then continued setting up the cron job per the original directions in the above link.  The first time this script runs, you will get a “File Not Found”.  Run the script a second time and the error is gone.  I’m now getting automatic backups of my MySQL Databases.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.dahlindevelopment.com%2F2010%2F10%2Fms-sql-and-mysql-database-backups-on-rackspace-cloud%2F&amp;title=MS%20SQL%20and%20MySQL%20Database%20Backups%20on%20Rackspace%20Cloud" id="wpa2a_2"><img src="http://blog.dahlindevelopment.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.dahlindevelopment.com/2010/10/ms-sql-and-mysql-database-backups-on-rackspace-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burn iso to dvd by command line</title>
		<link>http://blog.dahlindevelopment.com/2009/08/burn-iso-to-dvd-by-command-line/</link>
		<comments>http://blog.dahlindevelopment.com/2009/08/burn-iso-to-dvd-by-command-line/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 20:18:45 +0000</pubDate>
		<dc:creator>Joel</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.dahlindevelopment.com/?p=97</guid>
		<description><![CDATA[Windows has a utility, Windows Server 2003 Resource Kit Tools, that you can download that will allow you to burn an iso image to CD or DVD. It doesn’t have Vista as a supported OS, but it does work for me on Vista.&#160; When you install it, it will alert you that there are some [...]]]></description>
			<content:encoded><![CDATA[<p>Windows has a utility, <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;familyid=9D467A69-57FF-4AE7-96EE-B18C4790CFFD" target="_blank">Windows Server 2003 Resource Kit Tools</a>, that you can download that will allow you to burn an iso image to CD or DVD.</p>
<p>It doesn’t have Vista as a supported OS, but it does work for me on Vista.&#160; When you install it, it will alert you that there are some known compatibility issues.&#160; Just continue to install.</p>
<p>Once installed simply use this command line to burn the iso:</p>
<p><strong>dvdburn &lt;drive&gt; &lt;image&gt;</strong></p>
<p>So if I want to burn the iso image, “my.iso” located in c: and the drive letter of my dvd burner is d: I run this:</p>
<p><strong>dvdburn d: c:\my.iso </strong></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.dahlindevelopment.com%2F2009%2F08%2Fburn-iso-to-dvd-by-command-line%2F&amp;title=Burn%20iso%20to%20dvd%20by%20command%20line" id="wpa2a_4"><img src="http://blog.dahlindevelopment.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.dahlindevelopment.com/2009/08/burn-iso-to-dvd-by-command-line/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

