<?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>Cloudiquity &#187; Cloud</title>
	<atom:link href="http://www.cloudiquity.com/tag/cloud/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cloudiquity.com</link>
	<description>A blog about Cloud, Grid and HPC technologies</description>
	<lastBuildDate>Wed, 01 Feb 2012 12:56:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Dealing with MySQL issues in the Cloud: Automating restart on error</title>
		<link>http://www.cloudiquity.com/2011/11/dealing-with-mysql-issues-in-the-cloud-automating-restart-on-error/</link>
		<comments>http://www.cloudiquity.com/2011/11/dealing-with-mysql-issues-in-the-cloud-automating-restart-on-error/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 17:37:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[restart]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=582</guid>
		<description><![CDATA[MySQL is the mainstay of most Cloud Applications (including this WordPress Blog !), however if MySQL has an issue, either through number of connections maxing out, or MySQL being locked and not available it can result in site outages. We&#8217;ve seen clients who have ended up with their SQL DB down from a couple of [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL is the mainstay of most Cloud Applications (including this WordPress Blog !), however if MySQL has an issue, either through number of connections maxing out, or MySQL being locked and not available it can result in site outages. We&#8217;ve seen clients who have ended up with their SQL DB down from a couple of hours to a couple of days before they suddenly realised there was an issue.</p>
<p>To that end we wrote a small script that can be used to automate the restarting of MySQL in such scenarios.</p>
<p>The script is called mysqlrestart.sh and is listed below. You need root access to be able to use it. If you use it and  ever reboot the server you will need to login as root and run <strong>nohup ./mysqlrestart.sh  &amp; </strong>to restart it.</p>
<p>Set the script to run every 30 seconds using Cron. It will then check for a number of connections and if it cannot get a connection or the number of connections is greater than the number defined (defined as 90 in the example below), it will restart mysql.</p>
<p><span style="color: #808080;">#!/bin/bash</span></p>
<p><span style="color: #808080;">SQLCONNECTION_THRESHOLD=90</span></p>
<p><span style="color: #808080;">echo `date`  sqlrestart started &gt;&gt; run.out</span></p>
<p><span style="color: #808080;">while true; do</span></p>
<p><span style="color: #808080;">        sqlconnections=`mysql &#8211;skip-column-names -s   -e  &#8221;SHOW STATUS LIKE &#8216;Threads_connected&#8217;&#8221; -u root | awk &#8216;{print $2}&#8217;`</span></p>
<p><span style="color: #808080;">        #exclude myself from the number of thread connections             </span></p>
<p><span style="color: #808080;">        sqlconnections=$((sqlconnections &#8211; 1))</span></p>
<p><span style="color: #808080;">        echo `date` sqlrestart connections  $sqlconnections  &gt;&gt; run.out</span></p>
<p><span style="color: #808080;">        if [ $sqlconnections -gt $SQLCONNECTION_THRESHOLD ] || [ $sqlconnections -lt 0 ]</span></p>
<p><span style="color: #808080;">        then</span></p>
<p><span style="color: #808080;">                echo `date` restarting mysql server $sqlconnections  &gt;&gt; restart.out</span></p>
<p><span style="color: #808080;">                service mysql restart &gt;&gt; restart.out 2&gt;&amp;1</span></p>
<p><span style="color: #808080;">                echo `date` restart  complete   &gt;&gt; restart.out</span></p>
<p><span style="color: #808080;">        fi</span></p>
<p><span style="color: #808080;">        sleep 30</span></p>
<p><span style="color: #808080;">done</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2011/11/dealing-with-mysql-issues-in-the-cloud-automating-restart-on-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon Cloud is now FISMA certified: Joins Google and Microsoft</title>
		<link>http://www.cloudiquity.com/2011/09/amazon-cloud-is-now-fisma-certified-joins-google-and-microsoft-2/</link>
		<comments>http://www.cloudiquity.com/2011/09/amazon-cloud-is-now-fisma-certified-joins-google-and-microsoft-2/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 15:35:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[FISMA]]></category>
		<category><![CDATA[legislation]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=563</guid>
		<description><![CDATA[The Amazon Cloud has now classed as being FISMA certified. FISMA is an acronym for Federal Information Security Management Act. FISMA sets security requirements for federal IT systems. and is a required certification for US federal government projects. This is the third set of certifications Amazon has recently announced coming on top of VPC ISO [...]]]></description>
			<content:encoded><![CDATA[<p>The Amazon Cloud has now classed as being <a href="http://en.wikipedia.org/wiki/Federal_Information_Security_Management_Act_of_2002" target="_blank">FISMA</a> certified. FISMA is an acronym for Federal Information Security Management Act.  FISMA sets security requirements for federal IT systems. and is a required certification for US federal government projects.</p>
<p>This is the third set of certifications Amazon has recently announced coming on top of <a href="http://www.cloudiquity.com/2010/11/amazon-s3-ec2-and-vpc-iso-27001-certified/" >VPC ISO 27001 certification</a> and SAS 70 Type II certification.</p>
<p>The accreditation covers EC2 (Amazon Elastic Compute Cloud), S3 (Simple Storage Service), VPC (Virtual Private Cloud), and includes Amazon&#8217;s underlying infrastructure.  </p>
<p>AWS’ accreditation covers FISMA’s low and moderate levels. This level of accreditation requires a set of security configurations and controls that includes documenting the management, operational and technical processes used in securing physical and virtual infrastructure, and a requirement for third-party audits.</p>
<p>Other vendors who recently announced FISMA certification recently where Google with Google Apps for Government and Microsoft with the Microsoft’s Business Productivity Online Suite among cloud services (although there was a <a href="http://www.zdnet.com/blog/microsoft/microsoft-and-google-whos-the-most-fisma-compliant-of-them-all/9162" target="_blank">spat</a> between Microsoft and Google regarding these claims).</p>
<p>Expect to see further certifications as these are a pre-requisite of expansion into lucrative government and private sector contracts as vendors feels more comfortable choosing Cloud resources as commoditisation marches on.<br /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2011/09/amazon-cloud-is-now-fisma-certified-joins-google-and-microsoft-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Cloud and the power of &#8220;one&#8221;</title>
		<link>http://www.cloudiquity.com/2011/06/the-cloud-and-the-power-of-one/</link>
		<comments>http://www.cloudiquity.com/2011/06/the-cloud-and-the-power-of-one/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 13:38:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Customer Service]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=545</guid>
		<description><![CDATA[One of the interesting things that about the last 12-18 months is how the Cloud has put the power into the hands of consumers. What I mean by this is, imagine the following scenario in the world pre-cloud: &#8220;A user buys some software over the Internet or Shrink wrapped. They receive it and install it. [...]]]></description>
			<content:encoded><![CDATA[<p>One of the interesting things that about the last 12-18 months is how the Cloud has put the power into the hands of consumers. What I mean by this is, imagine the following scenario in the world pre-cloud:</p>
<p><em>&#8220;A user buys some software over the Internet or Shrink wrapped. They receive it and install it. It either does not work for them or they cannot figure out how to use it so they basically write off the cash and don&#8217;t use the App. End of story.&#8221;</em></p>
<p>Now lets looks at what happens on Cloud:</p>
<p><em>&#8220;The user either buys an Application from an App Store be it desktop or mobile, or a holiday from a holiday store, and then decided either the application is rubbish, does not work for them (or they have not RTFM) or has a bad experience on holiday. The user then use Social networks and/or the review forum on the App Store to comment on the bas experience&#8221;</em></p>
<p>In the latter case this &#8220;review&#8221; and negative experience puts off other people of trying the App / the holiday / the hotel etc. In some cases it can mean the difference between continually selling product or selling nothing as users look at the last bad review and then move somewhere else to continue their search to buy. One person can have the power to seriously undermine your whole product marketing and application strategy.</p>
<p>Even worse, many of the review forums (Apple&#8217;s App Store and Google Marketplace come to mind&#8230;) don&#8217;t even let you post a counter-review to explain that either the user has got it wrong, or misunderstood, or to genuinely offer to correct a bug. Worse still, some vendors can use a strategy of targeting competitive products to &#8220;put people off&#8221; purchase. In some cases this has led to the vendors involved <a href="http://www.dailymail.co.uk/travel/article-1325617/TripAdvisor-bad-reviews-prompt-Camelot-Castle-owner-hire-online-reputation-management-company.html" target="_blank">seeking out legal action</a>.</p>
<p>So what can you do to protect your product and your reputation ?</p>
<p>Well the first step has already been taken, you are at least thinking about it and conscious of it which is half the battle. What you should do is have your marketing or support team have a strategy that includes:</p>
<p>- Monitoring App Stores and review forums where your product features<br />
- Monitoring social media for keywords about your product or company<br />
- Set up Google Alerts keywords to inform you of keywords about your product and company<br />
- Ensure you check your Twitter messages and also posts on LinkedIn and Facebook pages.  These are easily missed.</p>
<p>When you see responses, always make sure to try and follow up with the user and engage and resolve their issue, even if this means refunding them, Even if a refund seems like the last thing you want to do, offer the refund, it is not worth your reputation. As part of the process try and see if they will change their review, even if it is only to neutral.</p>
<p>The Cloud brings power to the masses in more ways than one and a single user can have a dramatic network effect on your business if you are not careful !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2011/06/the-cloud-and-the-power-of-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clustrix reveals some big names using its Webscale SQL DB</title>
		<link>http://www.cloudiquity.com/2011/01/clustrix-reveals-some-big-names-using-its-webscale-sql-db/</link>
		<comments>http://www.cloudiquity.com/2011/01/clustrix-reveals-some-big-names-using-its-webscale-sql-db/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 19:02:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[Caching]]></category>
		<category><![CDATA[Clustrix]]></category>
		<category><![CDATA[GigaOM]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Sharding]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=531</guid>
		<description><![CDATA[An interesting article in the New York Tines online by Derrick Harris of GigaOM outlined the release of some customers using Clustrix webscale SQL database, namely, Box.net, AOL, PhotoBox, and iOffer. Clustrix launched in early May with the claim that it&#8217;s DB technology, which features MySQL like transactionality and reliability, could scale to billions of [...]]]></description>
			<content:encoded><![CDATA[<p>An <a href="http://www.nytimes.com/external/gigaom/2011/01/17/17gigaom-clustrix-lifts-the-curtain-on-early-database-cust-93427.html?ref=technology" target="_blank">interesting article</a> in the New York Tines online by Derrick Harris of <a href="http://www.gigaom.com/" target="_blank">GigaOM</a> outlined the release of some customers using <a href="http://www.clustrix.com/" target="_blank">Clustrix</a> webscale SQL database, namely, Box.net, AOL, PhotoBox, and iOffer.</p>
<p>Clustrix launched in early May with the claim that it&#8217;s DB technology, which features MySQL like transactionality and reliability, could scale to billions of entries. All four customers announced by Clustrix in the press release announced that this was the case.</p>
<p>Clustrix provide this as an appliance as an option for online services that do not want to have to invest time and effort in figuring out how to a) shard their data for better performance or b) move to something relatively new such as <a href="http://www.mongodb.org" target="_blank">MongDB</a>, or <a href="http://cassandra.apache.org/" target="_blank">Cassandra</a>.</p>
<p><img class="alignnone size-medium wp-image-532" title="Clustrix" src="http://www.cloudiquity.com/wp-content/uploads/2011/01/market-300x228.jpg" alt="Clustrix" width="300" height="228" /></p>
<p>Further details (which are worth reading) can be found <a href="http://gigaom.com/cloud/clustrix-lifts-the-curtain-on-early-database-customers/" target="_blank">on the original post</a> on GigaOM.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2011/01/clustrix-reveals-some-big-names-using-its-webscale-sql-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The rise of the Cloud Data Aggregators</title>
		<link>http://www.cloudiquity.com/2011/01/the-rise-of-the-cloud-data-aggregators/</link>
		<comments>http://www.cloudiquity.com/2011/01/the-rise-of-the-cloud-data-aggregators/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 15:45:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[aggregation]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Cloud Gateway]]></category>
		<category><![CDATA[Docs]]></category>
		<category><![CDATA[Documents to Go]]></category>
		<category><![CDATA[Gladinet]]></category>
		<category><![CDATA[GoodReader]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iWork. iSMEStorage]]></category>
		<category><![CDATA[Office2 HD]]></category>
		<category><![CDATA[Quick Office]]></category>
		<category><![CDATA[RackSpace]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[SMEStorage]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=525</guid>
		<description><![CDATA[As storing data in the cloud becomes increasingly more normal users will increasingly find themselves in the position of needing to access different types of data regularly.  To this end we are starting to see a new breed of applications and services which themselves provide a service that interacts with data stored on the cloud. [...]]]></description>
			<content:encoded><![CDATA[<p>As storing data in the cloud becomes increasingly more normal users will increasingly find themselves in the position of needing to access different types of data regularly.  To this end we are starting to see a new breed of applications and services which themselves provide a service that interacts with data stored on the cloud. The challenge is  that services that sell their products or service based on data access are in the position of having to choose which data services to support.</p>
<p>This is further exacerbated in the cloud storage space as their is no ubiquitous API (see our prior post on <a href="http://www.cloudiquity.com/2010/12/is-amazon-s3-becoming-a-de-facto-standard-interface/" target="_blank">Amazon S3 becoming a de facto standard interface</a>).</p>
<p>To this end we are starting to see services an applications that themselves are offering interesting aggregations of access to data clouds. We look at a few of these below:</p>
<p><a href="http://www.goodiware.com/goodreader.html" target="_blank">GoodReader</a>, <a href="http://www.bytesquared.com/products/office/ipad/" target="_blank">Office2 HD</a> , <a href="http://www.quickoffice.com/" target="_blank">QuickOffice</a> , <a href="http://www.dataviz.com/products/documentstogo/" target="_blank">Documents to Go</a>, <a href="http://www.smestorage.com/?p=static&amp;page=iphone" target="_blank">iSMEStorage</a>, <a href="http://www.apple.com/ipad/features/pages.html" target="_blank">iWork</a>:</p>
<p>The iPad,  iPhone, Android have some interesting applications which function on top of existing data clouds. All the aforementioned application work in this way, either letting you view the files (in the case of GoodReader) or letting you view and edit the files (in the case of Office2, QuickOffice, Documents to Go, iWork, and iSMEStorage). The premise is that if you have data stored in an existing cloud then you can load and view or edit it in this tools and store it locally.</p>
<p>Tools such as iWork (which encompasses iPages, iNumbers, and iKeynote) only work with MobileMe or the WebDav standard, although the iSMEStorage App gets around this by enabling you to use iWork as an editor for files accessed through it&#8217;s cloud gateway , that can be stored on any number of clouds, using WebDav, even if the underlying cloud does not support WebDav.</p>
<p>In fact some companies are making data access a feature in pricing, for example,  charging extra for increased connectivity.</p>
<p><a href="http://www.gladinet.com" target="_blank">Gladinet.com</a> and <a href="http://www.smestorage.com" target="_blank">SMEStorage.com</a> :</p>
<p>Both Gladinet and SMEStorage are unique amongst the current Cloud vendors in that they enable aggregated access to multiple file clouds. They essentially enable you to access cloud files from multiple different providers from a single file system.</p>
<p>Gladinet is inherently a windows only solution with <a href="http://www.gladinet.com/c/index.php/gladinet-products-services/" target="_blank">many different offerings</a> whereas SMEStorage also has <a href="http://www.smestorage.com/?p=static&amp;page=personal" target="_blank">windows software</a> but also has cloud drives for <a href="http://www.smestorage.com/?p=static&amp;page=labs#Linux%20Sync" target="_blank">Linux</a>, <a href="http://www.smestorage.com/?p=static&amp;page=labs#Mac%20Virtual%20Cloud%20Drive" target="_blank">Mac</a> and also mobile clients for <a href="http://www.smestorage.com/?p=static&amp;page=iphone" target="_blank">iOS</a>, <a href="http://www.smestorage.com/?p=static&amp;page=Android" target="_blank">Android</a> and <a href="http://www.smestorage.com/?p=static&amp;page=BlackBerry" target="_blank">BlackBerry</a>. Gladinet is  a client side service whereas SMEStorage is a server-based service using it&#8217;s <a href="http://www.smestorage.com/?p=static&amp;page=white_label" target="_blank">Cloud Gateway Appliance</a> ,which is also available as a virtual appliance for VMWAre, XEN etc.</p>
<p>Both offering support a dizzying array of Cloud, such as, Amazon S3, Windows Azure Blob Storage, Google Storage, Google Docs, RackSpace Cloud Files etc, plus many more.</p>
<p>Such solutions don&#8217;t just aggregate cloud services but bring the cloud into the desktop and onto the Mobile / Tablet, making the use of cloud data much more transparent.</p>
<p>As data become more outsourced (to the cloud) for all types of different applications and services I expect we will see more such innovative solutions, and applications that give access to aggregated cloud data, and extend the services and tools that are provided by the native data provider.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2011/01/the-rise-of-the-cloud-data-aggregators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gawker news sites cloud security breach</title>
		<link>http://www.cloudiquity.com/2010/12/gawker-news-sites-cloud-security-breach/</link>
		<comments>http://www.cloudiquity.com/2010/12/gawker-news-sites-cloud-security-breach/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 14:56:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[gawker]]></category>
		<category><![CDATA[lifehacker]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=518</guid>
		<description><![CDATA[If you did not notice the Gawker set of news sites recently has it&#8217;s online security compromised. You may not have heard of Gawker but you will probably know of the set of news sites they encompass which includes Gizmodo, Lifehacker, Kotaku, io9 or Jezebel. Over 1.3 million passwords where stolen and uploaded as a [...]]]></description>
			<content:encoded><![CDATA[<p>If you did not notice the <a href="http://gawker.com/" target="_blank">Gawker</a> set of news sites recently has it&#8217;s online security compromised. You may not have heard of Gawker but you will probably know of the set of news sites they encompass which includes Gizmodo, Lifehacker, Kotaku, io9 or Jezebel. Over 1.3 million passwords where stolen and uploaded as a 500MB <a href="http://www.google.co.uk/search?hl=en&amp;defl=en&amp;q=define:Torrent+file&amp;sa=X&amp;ei=ZoEHTavlK8O7hAeA-bntBw&amp;ved=0CBYQkAE" target="_blank">torrent file</a>. Also posted where Gawker&#8217;s source code and internal employee conversations. The disclosure of this authentication information led to a viral effect with increased spam attacks, for example,<a href="http://www.bbc.co.uk/news/technology-11981816" target="_blank"> on Twitter</a> being attributed to the breach. Many users use the same web password everywhere so such a breach could leave them exposed on every site where they use the same username and password.</p>
<p>Apparently the passwords where encrypted in the torrent but as Gawker used an outdated encryption scheme they are relatively <a href="http://www.geek.com/articles/news/gawker-network-has-over-a-million-passwords-stolen-uploaded-to-bittorrent-20101213/" target="_blank">straightforward to crack</a>. If you have ever registered on any of these sites then and tend to use the same username and password then you should change your username and password anywhere else you have used it on the web. Some sites are already pro-actively forcing you to do this. I receive an email from LinkedIN today that made me go through the lost password security mechanism to reset my account.</p>
<p><strong><em>So what does this mean for Cloud ?</em></strong> Can one site damage the concept of storing and accessing information on the Cloud ? I think for sure, yes. It will make companies who were reticent about going to Cloud because of security concerns even more reticent, and such a breach has an effect on other sites, and I am sure we have not seen the full fallout of this yet. As for Gawker&#8217;s brand, well I think it is hugely damaging, although the web can be a fickle place, it remains to be seen how badly affected the Gawker brand will be. I can imagine potential advertisers do not want to be associated with it.</p>
<p><strong><em>What can you do to protect yourself ?</em></strong> Well first, for sure change any username/password combos that are the same as the one you registered on this site, and in future consider having a separate username/password combination for each site you register. I create email addresses specifically for a registration for such sites on the web and I file them in <a href="http://keepass.info/" target="_blank">KeepPass</a> to be able to remember them. Ulitmately, remember, as a user don&#8217;t rely that such sites will protect your data, and as a vendor, revisit your security mechanisms to ensure the next Gawker is not you !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2010/12/gawker-news-sites-cloud-security-breach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon S3, EC2 and VPC ISO 27001 certified</title>
		<link>http://www.cloudiquity.com/2010/11/amazon-s3-ec2-and-vpc-iso-27001-certified/</link>
		<comments>http://www.cloudiquity.com/2010/11/amazon-s3-ec2-and-vpc-iso-27001-certified/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 10:53:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Audit]]></category>
		<category><![CDATA[Compliance]]></category>
		<category><![CDATA[ISO 27001]]></category>
		<category><![CDATA[SAS 70 Type II]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=505</guid>
		<description><![CDATA[As well as being SAS 70 Type II-certified Amazon is now ISO 27001 certified. ISO/IEC 27001 formally outlines a management system that brings information security under management control, and mandates requirements that have to be met. Organisations that have adopted ISO/IEC 27001 may be formally audited to maintain compliance with the standard. As stated on [...]]]></description>
			<content:encoded><![CDATA[<p>As well as being <a href="http://en.wikipedia.org/wiki/Statement_on_Auditing_Standards_No._70:_Service_Organizations" target="_blank">SAS 70 Type II-certified</a> Amazon is now<a href="http://en.wikipedia.org/wiki/ISO/IEC_27001" target="_blank"> ISO 27001</a> certified. ISO/IEC 27001 formally outlines a management system that brings information security under management control, and mandates requirements that have to be met. Organisations that have adopted ISO/IEC 27001 may be formally audited to maintain compliance with the standard.</p>
<p>As stated on WikiPedia:</p>
<blockquote><p>SO/IEC 27001 requires that management:</p>
<p>Systematically examine the organization&#8217;s information security risks, taking account of the threats, vulnerabilities and impacts;</p>
<p>Design and implement a coherent and comprehensive suite of information security controls and/or other forms of risk treatment (such as risk avoidance or risk transfer) to address those risks that are deemed unacceptable; and</p>
<p>Adopt an overarching management process to ensure that the information security controls continue to meet the organization&#8217;s information security needs on an ongoing basis.</p></blockquote>
<p><em>“Amazon Web Services is continuing its commitment to provide further assurance of AWS security controls and practices through third-party audits and certifications such as SAS 70 Type II and ISO 27001,”</em> said Stephen Schmidt, Chief Information Security Officer for Amazon Web Services.</p>
<p><em>“Via ISO 27001 and other certifications, we continue to provide our customers with confidence that our security controls and practices follow internationally-recognized security standards.”</em></p>
<p>You can learn more about Amazon and it&#8217;s compliance and security provisions <a href="http://aws.amazon.com/security/" target="_blank">here</a>.</p>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2010/11/amazon-s3-ec2-and-vpc-iso-27001-certified/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cloud Failure &#8211; Files cannot be downloaded from Box.net</title>
		<link>http://www.cloudiquity.com/2010/07/cloud-failure-files-cannot-be-downloaded-from-box-net/</link>
		<comments>http://www.cloudiquity.com/2010/07/cloud-failure-files-cannot-be-downloaded-from-box-net/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 12:22:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Box.net]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/2010/07/cloud-failure-files-cannot-be-downloaded-from-box-net/</guid>
		<description><![CDATA[Again the ugly issue of what do you do when the cloud goes wrong rears it&#8217;s head. Right now if you login to box.net and try and download a file you cannot download a file. Instead you get a screen like the below. I&#8217;m sure Box are aware of this, but it again shows you [...]]]></description>
			<content:encoded><![CDATA[<p>Again the ugly issue of what do you do when the cloud goes wrong rears it&#8217;s head. Right now if you login to box.net and try and download a file you cannot download a file. Instead you get a screen like the below. I&#8217;m sure Box are aware of this, but it again shows you the total reliance you have on an outsourced infrastructure on the cloud, and their problems become your problems.</p>
<p><img src="http://www.cloudiquity.com/wp-content/uploads/2010/07/Picture-12.png" alt="Picture 12" title="Picture 12" width="479" height="222" class="alignnone size-full wp-image-500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2010/07/cloud-failure-files-cannot-be-downloaded-from-box-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Cloud &#8211; A disruptive game changer &#8211; just ask Nokia !</title>
		<link>http://www.cloudiquity.com/2009/08/the-cloud-a-disruptive-game-changer-just-ask-nokia/</link>
		<comments>http://www.cloudiquity.com/2009/08/the-cloud-a-disruptive-game-changer-just-ask-nokia/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:11:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[disruptive]]></category>
		<category><![CDATA[game changing]]></category>
		<category><![CDATA[Nokia]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=444</guid>
		<description><![CDATA[It&#8217;s often said that the Cloud will be a game changer and disruptive and that statement is put out there for the future but I believe we have already seen a huge example of this in the mobile telecommunications domain.  We have seen in the last twelve months the beginning of a fundamental change in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-445" title="iStock_000000579002XxxSmall" src="http://www.cloudiquity.com/wp-content/uploads/2009/08/iStock_000000579002XxxSmall.jpg" alt="iStock_000000579002XxxSmall" width="148" height="99" />It&#8217;s often said that the Cloud will be a game changer and disruptive and that statement is put out there for the future but I believe we have already seen a huge example of this in the mobile telecommunications domain.  We have seen in the last twelve months the beginning of a fundamental change in a users relationship with services because of the ability of real time delivery over mobile and fixed broadband. Apple single handedly changed the perception of, not only what dollar value a user would pay, but that they would actually pay at all. In the first 60 days Apple had 100 million downloads from their App Store.  Just think about this&#8230;60 days, 100 million downloads ! Phenomenal. Even more phenomenal is they ripped up the script of the established model and established their own.</p>
<p>We have quickly seen other providers such as RIM, and Google quickly adopt the same model, with Nokia lagging behind and then news <a href="http://reviews.cnet.com/8301-13970_7-10164838-78.html" target="_blank">filtering out </a>that they would launch an App Store at the Mobile World Conference in Barcelona and when they did,  well lets just say that it was not <a href="http://www.techcrunch.com/2009/05/26/nokia-ovi-store-launch-is-a-complete-disaster/" target="_blank">exactly a success</a>.  Microsoft, late to the party as always, are also <a href="https://www.microsoft.com/presspass/press/2009/feb09/02-16MWCPR.mspx" target="_blank">jumped on the bandwagon</a> with the launch of their <a href="http://myphone.microsoft.com/mkweb/Start.po?mkt=en-US&#038;ocid=sem_enus_g-myphone" target="_blank">&#8220;My Phone&#8221; service</a> . Samsung have also now launched their own <a href="http://applications.samsungmobile.com/en/gbp/index.html" target="_blank">Mobile Applications MarketPlace</a>. This shift has hugely changed the whole model of the Telco market. Nokia, the 100 pound gorilla, is losing market share hand over fist as it struggles to get to grips with this new model. Motorola has lost <a href="http://www.mobilemonday.net/news/motorola-loses-usd-3-6-billion-in-q4" target="_blank">$3.6 billion</a> as they too struggle to get to grips with this new consumer model.</p>
<p>In 1 year Apple has become the eighth largest mobile phone vendor in the world (source: <a href="http://www.strategyanalytics.com/" target="_blank">strategy analytics</a>). This whilst only competing in the smartphone market and, at the time of the report, not selling into markets such as China. Overall during the past March quarter mobile phone sales fell 13% worldwide, the fastest rate of annual decline since record began, but in contrast sales rose 10% in the US, largely because of Apple. The top 5 handset vendors saw their market share fall from 83.5% to 78%, a decline that is predicted to continue as Android comes of age and Apple continues it&#8217;s dominance with low-end entry points into the consumer market.</p>
<p>The whole notion of how to sell to an individual has changed, it has become from the edge and back rather than the reverse i.e. it has proved that users are wiling to not only pay for real-time services and just-in-time applications, but will actually choose their handset provider based on the perceived value and breadth of those services. How many times have you read of a competitive phone review, &#8220;In some ways it is a better handset than the iPhone but it just cannot match the App Store for breadth of Appllications&#8221;. Interestingly not everyone agrees. MobileCrunch recently ran an article, &#8220;<a href="http://www.mobilecrunch.com/2009/02/04/not-every-company-needs-an-app-store/" target="_blank">Not every Company needs an App Store</a>&#8220;.  I believe they miss the point. The rules have changed and the humble phone has changed to become <span style="font-style: italic;"><span style="font-weight: bold;">a platform to deliver services </span><span style="font-weight: bold;"><span style="font-style: normal;">aided by on-demand cloud applications and services</span></span></span>.  </p>
<p>I agree that ideally we would be able to write against one platform for services delivered. Unfortunately the mobile phone OS market is very segmented with lots of players such as Symbian (Nokia), Microsoft, Google, iPhone etc. Having said that their are some initiatives to try and provide some abstraction to allow code / services written for one platform to run on others, such as <a href="http://phonegap.com/" target="_blank">PhoneGap</a>, which supports iPhone, Android and Blackberry. Ultimately the Genie is out of the bottle and new mobile companies can see the carrot that is new revenue and business models that Apple has made reality. Ultimately the will have no choice, with an Open Source OS model in Android squeezing them from one side, and Apple on the other, the landscape is being changed and the 100 pound gorilla is starting to look like an endangered species. Figures compiled by Gartner show that Apples Market share more than doubled in 2008, whilst Nokia&#8217;s Market share of the global smartphone Market fell from 47% in 2007 to 31% in 2008, and based on projections in the Gartner analysis, this would make Apple the leading global smartphone provider by 2011. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2009/08/the-cloud-a-disruptive-game-changer-just-ask-nokia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon EC2 News / Round Up</title>
		<link>http://www.cloudiquity.com/2009/06/amazon-ec2-news-round-up/</link>
		<comments>http://www.cloudiquity.com/2009/06/amazon-ec2-news-round-up/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 07:50:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Cloud Gaming]]></category>
		<category><![CDATA[Compiere]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.cloudiquity.com/?p=379</guid>
		<description><![CDATA[There is a good PDF whitepaper on using Oracle with Amazon Web Services which can be downloaded here. A tutorial by Amazon on creating an Active Directory Domain on Amazon EC2 is a thorough article and well worth the read if you intend to implement this functionality on the cloud. Simon Brunozzi from Amazon gives [...]]]></description>
			<content:encoded><![CDATA[<p>There is a good PDF whitepaper on using Oracle with Amazon Web Services which can be downloaded <a href="http://www.instapaper.com/go/5208298" target="_blank">here</a>.<br />
</br/><br />
A tutorial by Amazon on creating an Active Directory Domain on Amazon EC2 is a thorough article and well <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2435" target="_blank">worth the read</a> if you intend to implement this functionality on the cloud.<br />
</br/><br />
Simon Brunozzi from Amazon gives a good talk on &#8220;From zero to Cloud in 30 minutes&#8221; at the Next conference in Hamburg which can be viewed below.<br />
</br/><br />
<script type="text/javascript" src="http://next.sevenload.com/api/embed?v=sWYfgjS"></script><br />
</br/><br />
Leventum <a href="http://www.levementum.com/company/news/levementum-implements-first-erp-solution-in-the-cloud/111.html" target="_blank">talk about</a> how they implemented the first ERP solution on the cloud using Compiere.<br />
</br/><br />
Jay Crossler Looks at how to visualize different cloud computing algorithms using serious Games technologies on the Amazon EC2 cloud below:<br />
</br/><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/g2uq-psosF8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/g2uq-psosF8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudiquity.com/2009/06/amazon-ec2-news-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

