<?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>Ideas.... &#187; Apache</title>
	<atom:link href="http://rosalynmetz.com/ideas/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://rosalynmetz.com/ideas</link>
	<description>a blog for me to record thoughts and ideas</description>
	<lastBuildDate>Mon, 19 Jul 2010 16:27:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Apache, SSL, and Annoying Password on Restart</title>
		<link>http://rosalynmetz.com/ideas/2009/06/26/apache-ssl-and-annoying-password-on-restart/</link>
		<comments>http://rosalynmetz.com/ideas/2009/06/26/apache-ssl-and-annoying-password-on-restart/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 18:06:36 +0000</pubDate>
		<dc:creator>Rosalyn Metz</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://rosalynmetz.com/ideas/?p=651</guid>
		<description><![CDATA[So I have a server with an SSL cert.  It requires a passphrase every time I restart.  This is slightly annoying.  So one of my coworkers recommended the following: create a simple perl script that prints the password in the ssl.conf file change SSLPassPhraseDialog builtin to SSLPassPhraseDialog exec:/location/to/passphrase.pl restart apache It works beautifully.  I am [...]]]></description>
			<content:encoded><![CDATA[<p>So I have a server with an SSL cert.  It requires a passphrase every time I restart.  This is slightly annoying.  So one of my coworkers recommended the following:</p>
<ol>
<li>create a simple perl script that prints the password</li>
<li>in the ssl.conf file change <em>SSLPassPhraseDialog builtin</em> to <em>SSLPassPhraseDialog exec:/location/to/passphrase.pl</em></li>
<li>restart apache</li>
</ol>
<p>It works beautifully.  I am of course writing this down because I will forget what he told me in like 5 minutes.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://rosalynmetz.com/ideas/2009/06/26/apache-ssl-and-annoying-password-on-restart/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Changing the Domain Name for Moodle</title>
		<link>http://rosalynmetz.com/ideas/2008/10/28/changing-domain-name-moodle/</link>
		<comments>http://rosalynmetz.com/ideas/2008/10/28/changing-domain-name-moodle/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 15:36:24 +0000</pubDate>
		<dc:creator>Rosalyn Metz</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Moodle]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://rosalynmetz.com/ideas/?p=140</guid>
		<description><![CDATA[I poked around and it seems simple enough to do.  Below are a few posts that describe this: http://moodle.org/mod/forum/discuss.php?d=14126 http://moodle.org/mod/forum/discuss.php?d=74380 http://moodle.org/mod/forum/discuss.php?d=35937 It seems easy enough to change.  Once I get my test server up and running I&#8217;ll go in and change the domain name in the config.php file to make sure I&#8217;m not going to [...]]]></description>
			<content:encoded><![CDATA[<p>I poked around and it seems simple enough to do.  Below are a few posts that describe this:</p>
<ul>
<li><a href="http://moodle.org/mod/forum/discuss.php?d=14126">http://moodle.org/mod/forum/discuss.php?d=14126</a></li>
<li><a href="http://moodle.org/mod/forum/discuss.php?d=74380">http://moodle.org/mod/forum/discuss.php?d=74380</a></li>
<li><a href="http://moodle.org/mod/forum/discuss.php?d=74380">http://moodle.org/mod/forum/discuss.php?d=35937</a></li>
</ul>
<p>It seems easy enough to change.  Once I get my test server up and running I&#8217;ll go in and change the domain name in the config.php file to make sure I&#8217;m not going to break anything.  I&#8217;m sure it will be fine, but better safe than sorry.</p>
<p>A bigger problem we&#8217;re having is Mac Servers run something called Performance Cache on port 80 (aka the default web port) and Apache on port 16080.  What&#8217;s annoying about this is that (if you let it) all your web pages will end up pointing to port 16080&#8230;a complete pain.  This <a href="http://support.apple.com/kb/TA20511?viewlocale=en_US">article on the Mac OS X Server 10</a> talks about this Performance Cache, Apache, and the ports.</p>
<p>One way to resolve the port 16080 issue is to turn off Performance Cache.  Below are instructions for doing this on Server 10.4.11:</p>
<ol>
<li>open Server Admin</li>
<li>click Web in the list of services</li>
<li>click Sites in the tab list at the top of the screen</li>
<li>choose the site in your list which is constantly showing port 16080 in web addresses and click the pencil button at the bottom of the window to edit the site.</li>
<li>click Options in the tab list at the top of the screen</li>
<li>uncheck the box next to Performance Cache</li>
</ol>
<p>Again once I get my test server, I&#8217;m going to have to poke around and make sure that I don&#8217;t need to change anything in Apache as well.  I did notice that Apache on a Mac makes use of .conf files (stored in /etc/httpd/sites) for each of the websites it creates.  Within each of those files you&#8217;ll see the &lt;VirtualHost&gt; tags and info that Apache people are used to.  I&#8217;m assuming that Mac&#8217;s Server Admin tool will update these files for me, but you know what they say about assuming.  I did find this <a href="http://discussions.apple.com/thread.jspa?threadID=1745911&amp;tstart=0">one forum post</a> that suggests I may need to go in and change those conf files myself.  We shall see&#8230;.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://rosalynmetz.com/ideas/2008/10/28/changing-domain-name-moodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Tomcat and XTF on my Mac</title>
		<link>http://rosalynmetz.com/ideas/2008/10/20/installing-tomcat-and-xtf-on-my-mac/</link>
		<comments>http://rosalynmetz.com/ideas/2008/10/20/installing-tomcat-and-xtf-on-my-mac/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 18:55:50 +0000</pubDate>
		<dc:creator>Rosalyn Metz</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://rosalynmetz.com/ideas/?p=128</guid>
		<description><![CDATA[Friday I decided to be a complete and utter geek and install Apache Tomcat on my Mac.  I know, I know you&#8217;re asking me &#8220;But Rosalyn Apache comes with a Mac, why do you need Tomcat?&#8221;  Well that&#8217;s a good question.  And the answer is I wanted to install XTF which is an XML publishing [...]]]></description>
			<content:encoded><![CDATA[<p>Friday I decided to be a complete and utter geek and install Apache Tomcat on my Mac.  I know, I know you&#8217;re asking me &#8220;But Rosalyn Apache comes with a Mac, why do you need Tomcat?&#8221;  Well that&#8217;s a good question.  And the answer is I wanted to install <a href="http://www.cdlib.org/inside/projects/xtf/">XTF</a> which is an XML publishing tool developed by <a href="http://www.cdlib.org/">CDL (California Digital Library)</a>, and XTF requires that you use Tomcat in order to run it (or you can use Resin&#8230;but I&#8217;m an Apache fan).</p>
<p>So now you&#8217;re thinking, &#8220;How did you do it?&#8221;  I wish I could have thought it up on my own, but saddly I didn&#8217;t.  I looked at a few pages and then finally settled on Basil Borque&#8217;s section (under Update 2006) on this wiki page: <a href="http://wiki.apache.org/tomcat/TomcatOnMacOS">http://wiki.apache.org/tomcat/TomcatOnMacOS</a>.  Bravo to Basil for posting the directions.  I didn&#8217;t bother with the firewall though because my laptop is behind a firewall by default.  Also I wanted to still run Apache so I left Tomcat on its default port 8080.</p>
<p>Once I got Tomcat up and running, I then moved on to XTF.  This process was ridiculously easy.  CDL has wonderful <a href="http://xtf.wiki.sourceforge.net/deployment_QuickStart">XTF installation directions</a> on the <a href="http://xtf.wiki.sourceforge.net/">SourceForge XTF Wiki</a>.  If you&#8217;re on Wheaton&#8217;s Campus (and my computer is currently connected to the internet) you can view <a href="http://155.47.104.38:8080/xtf/search">XTF here</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://rosalynmetz.com/ideas/2008/10/20/installing-tomcat-and-xtf-on-my-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
