<?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>Steven She at woggie.net &#187; confluence</title>
	<atom:link href="http://www.woggie.net/tag/confluence/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.woggie.net</link>
	<description>The life of a PhD Candidate in Software Engineering</description>
	<lastBuildDate>Mon, 25 Oct 2010 14:33:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing Confluence using Apache Tomcat 6 and Ubuntu</title>
		<link>http://www.woggie.net/2009/03/26/installing-confluence-using-apache-tomcat-6-and-ubuntu/</link>
		<comments>http://www.woggie.net/2009/03/26/installing-confluence-using-apache-tomcat-6-and-ubuntu/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 04:44:14 +0000</pubDate>
		<dc:creator>Steven She</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[confluence]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.woggie.net/?p=129</guid>
		<description><![CDATA[Here&#8217;s a short guide for installing Confluence on a shared Tomcat server instance on Ubuntu 8.10. Apache Tomcat 6 can be installed using a simple apt-get command: sudo apt-get install tomcat6 Next, we&#8217;ll need to raise the Tomcat heap size for confluence. Edit /etc/default/tomcat6 and add the line: JAVA_OPTS="-Xms128m -Xmx1024m -XX:MaxPermSize=256m $JAVA_OPTS -Djava.awt.headless=true" Now, we&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a short guide for installing <a href="http://www.atlassian.com/software/confluence/">Confluence</a> on a shared Tomcat server instance on Ubuntu 8.10. Apache Tomcat 6 can be installed using a simple apt-get command:</p>
<pre>sudo apt-get install tomcat6</pre>
<p>Next, we&#8217;ll need to raise the Tomcat heap size for confluence. Edit <code>/etc/default/tomcat6</code> and add the line:</p>
<pre>JAVA_OPTS="-Xms128m -Xmx1024m -XX:MaxPermSize=256m $JAVA_OPTS -Djava.awt.headless=true"</pre>
<p>Now, we&#8217;ll need to grant security permissions to the Confluence webapp. To do this, create a file <code>/etc/tomcat6/policy.d/05confluence.policy</code> and place the following text in it:</p>
<pre>grant codeBase "file:${catalina.home}/webapps/confluence/-" {
permission java.security.AllPermission;
};

grant {
permission java.lang.RuntimePermission "accessDeclaredMembers";
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
permission java.lang.RuntimePermission "defineCGLIBClassInJavaPackage";
};</pre>
<p>Finally, we can restart Tomcat using the command:</p>
<pre>/etc/init.d/tomcat6 restart</pre>
<p><strong>References</strong></p>
<ul>
<li><a href="http://confluence.atlassian.com/display/DOC/Installing+the+Confluence+EAR-WAR+Edition">Confluence installation guide</a></li>
<li><a href="http://confluence.atlassian.com/display/CONF27/Known+Issues+with+Enterprise+or+Webhosting+environments">Confluence security policy</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.woggie.net/2009/03/26/installing-confluence-using-apache-tomcat-6-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

