<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Create a server in the cloud&#8230;in a breeze!</title>
	<atom:link href="http://www.senseplanet.com/2009/05/mosso-cloud-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.senseplanet.com/2009/05/mosso-cloud-server/</link>
	<description>finally, web and things get along!  - brought to you by Daniel Kaplan ( daniel@senseplanet.com )</description>
	<lastBuildDate>Wed, 26 May 2010 19:44:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Daniel</title>
		<link>http://www.senseplanet.com/2009/05/mosso-cloud-server/comment-page-1/#comment-32</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 24 Feb 2010 17:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalibelaproductions.com/daniel/?p=31#comment-32</guid>
		<description>Note for myself:
if Java heap size encountered while running Tomcat, increase the memory allocated to Java by adding this line to catalina.sh:
JAVA_OPTS=&quot;$JAVA_OPTS &quot;-Xms512m&quot; &quot;-Xmx1024m&quot;</description>
		<content:encoded><![CDATA[<p>Note for myself:<br />
if Java heap size encountered while running Tomcat, increase the memory allocated to Java by adding this line to catalina.sh:<br />
JAVA_OPTS=&#8221;$JAVA_OPTS &#8220;-Xms512m&#8221; &#8220;-Xmx1024m&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel</title>
		<link>http://www.senseplanet.com/2009/05/mosso-cloud-server/comment-page-1/#comment-26</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Wed, 03 Feb 2010 23:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalibelaproductions.com/daniel/?p=31#comment-26</guid>
		<description>Note for myself:
In Centos 5.3, do not forget to modify the iptable so as to access tomcat from an external IP.

Enter iptables...
Iptables is your firewall, its baked into CentOS, and its extremely powerful. I don’t know the complete depth of iptables but for this tutorial you’ll need to just get a few ports opened up and that’s it.
# iptables -F
# iptables -A INPUT -p udp -m udp --dport domain -j ACCEPT
# iptables -A INPUT -p tcp --dport 22 -j ACCEPT
# iptables -A INPUT -p tcp --dport 10000 -j ACCEPT
# iptables -A INPUT -p tcp --dport 25 -j ACCEPT
# iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
# iptables -A INPUT -p tcp --dport 80 -j ACCEPT
# iptables -A INPUT -p tcp -m tcp --dport domain -j ACCEPT
# iptables -A FORWARD -o eth0 -j LOG  --log-level 7 --log-prefix BANDWIDTH_OUT:
# iptables -A FORWARD -i eth0 -j LOG  --log-level 7 --log-prefix BANDWIDTH_IN:
# iptables -A OUTPUT -o eth0 -j LOG  --log-level 7 --log-prefix BANDWIDTH_OUT:
# iptables -A INPUT -i eth0 -j LOG  --log-level 7 --log-prefix BANDWIDTH_IN:


make sure you save your iptables configuration so you don’t have to re-edit it when you reboot your server
# /sbin/service iptables save

now just restart your firewall
# /etc/init.d/iptables restart

now you can check your configuration
# iptables -L -v

at this point, for good measure you might want to reboot your server
# reboot</description>
		<content:encoded><![CDATA[<p>Note for myself:<br />
In Centos 5.3, do not forget to modify the iptable so as to access tomcat from an external IP.</p>
<p>Enter iptables&#8230;<br />
Iptables is your firewall, its baked into CentOS, and its extremely powerful. I don’t know the complete depth of iptables but for this tutorial you’ll need to just get a few ports opened up and that’s it.<br />
# iptables -F<br />
# iptables -A INPUT -p udp -m udp &#8211;dport domain -j ACCEPT<br />
# iptables -A INPUT -p tcp &#8211;dport 22 -j ACCEPT<br />
# iptables -A INPUT -p tcp &#8211;dport 10000 -j ACCEPT<br />
# iptables -A INPUT -p tcp &#8211;dport 25 -j ACCEPT<br />
# iptables -A INPUT -p tcp &#8211;dport 8080 -j ACCEPT<br />
# iptables -A INPUT -p tcp &#8211;dport 80 -j ACCEPT<br />
# iptables -A INPUT -p tcp -m tcp &#8211;dport domain -j ACCEPT<br />
# iptables -A FORWARD -o eth0 -j LOG  &#8211;log-level 7 &#8211;log-prefix BANDWIDTH_OUT:<br />
# iptables -A FORWARD -i eth0 -j LOG  &#8211;log-level 7 &#8211;log-prefix BANDWIDTH_IN:<br />
# iptables -A OUTPUT -o eth0 -j LOG  &#8211;log-level 7 &#8211;log-prefix BANDWIDTH_OUT:<br />
# iptables -A INPUT -i eth0 -j LOG  &#8211;log-level 7 &#8211;log-prefix BANDWIDTH_IN:</p>
<p>make sure you save your iptables configuration so you don’t have to re-edit it when you reboot your server<br />
# /sbin/service iptables save</p>
<p>now just restart your firewall<br />
# /etc/init.d/iptables restart</p>
<p>now you can check your configuration<br />
# iptables -L -v</p>
<p>at this point, for good measure you might want to reboot your server<br />
# reboot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teddyber</title>
		<link>http://www.senseplanet.com/2009/05/mosso-cloud-server/comment-page-1/#comment-10</link>
		<dc:creator>teddyber</dc:creator>
		<pubDate>Tue, 22 Dec 2009 09:02:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalibelaproductions.com/daniel/?p=31#comment-10</guid>
		<description>mmh, miam! This looks yummy!</description>
		<content:encoded><![CDATA[<p>mmh, miam! This looks yummy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel</title>
		<link>http://www.senseplanet.com/2009/05/mosso-cloud-server/comment-page-1/#comment-5</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Fri, 19 Jun 2009 23:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalibelaproductions.com/daniel/?p=31#comment-5</guid>
		<description>Just received my first bill..only 8 dollars per month for a 256 RAM server!
Mosso is just perfect for prototyping. Kudos guys.</description>
		<content:encoded><![CDATA[<p>Just received my first bill..only 8 dollars per month for a 256 RAM server!<br />
Mosso is just perfect for prototyping. Kudos guys.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

