<?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>Kate&#039;s Comment &#187; hosting</title> <atom:link href="http://www.katescomment.com/tag/hosting/feed/" rel="self" type="application/rss+xml" /><link>http://www.katescomment.com</link> <description>Thoughts on British ICT, energy &#38; environment, &#34;Cloud&#34;, and security from Memset&#039;s MD</description> <lastBuildDate>Fri, 03 Feb 2012 16:21:52 +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>How To Protect Your Site from Cyber Crime</title><link>http://www.katescomment.com/protect-your-site-from-cyber-crime/</link> <comments>http://www.katescomment.com/protect-your-site-from-cyber-crime/#comments</comments> <pubDate>Fri, 06 Jan 2012 05:05:42 +0000</pubDate> <dc:creator>katecw</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[hosting]]></category> <guid
isPermaLink="false">http://www.katescomment.com/?p=948</guid> <description><![CDATA[In the 1980s, computer viruses passed around on floppy disks were the main security risks. How things have changed! Now, we have bot nets, adaptive computer viruses, social engineering, and phishing to worry about.  From hackers / script kiddies to DoSers (Denial of Service), we as hosting providers have to fight them all them all. But that's just part of our job, however there are some important things people can do to protect themselves.]]></description> <content:encoded><![CDATA[<p>In the 1980s, computer viruses passed around on floppy disks were the main security risks. How things have changed! Now, we have bot nets, adaptive computer viruses, social engineering, and phishing to worry about.  From hackers / script kiddies to DoSers (Denial of Service), we as hosting providers have to fight them all them all. But that&#8217;s just part of our job, however there are some important things people can do to protect themselves.</p><h3>The evolving threat</h3><p>On a consumer level there are the phishing sites, out to steal your credit card or online banking details by pretending to be a trusted brand, and at a business level there are threats and extortion</p><p>dDOS (distrubited Denial of Service) attacks are typically launched from “bot nets”, or collections of compromised personal computers and servers. While alone any one of those machines, usually on the end of a home ADSL connection, cannot do much damage, if thousands of them flood a Web site with bogus requests Unfortunately the only real defense against such is to have more bandwidth than an attacker, but with more companies moving to cloud providers with massive pipes like us that means that the attacker would need a bot net of many thousands of machines to cause damage.</p><p>There has also been a marked increase in criminals attacking popular sites and advertising engines to steal information and disable websites for political reasons. The recent wave of ‘hacktivists’ presents new issues for web hosts, as many traditional organisations are now having their sites hacked.</p><h3>Web Development</h3><p>The first stage in solving the security problem starts with the development and design stage. If developers neglect to address all security issues, a future hacker will very likely exploit the flaw to run commands which can compromise the data on in your hosting account, some of which might even be confidential. To fix this problem, you must ensure scripts are very well planned and tested, especially those parts that deal with private information. Testing all inputs to the software is vital &#8211; ask your developer if they have enabled <a
href="http://en.wikipedia.org/wiki/Taint_checking">taint checking</a> and if they look at you blankly get another developer!</p><p>Any forms that handle sensitive data should be using HTTPS (secure HTTP) of course. Be sure to enable SSL and buy a a Digital Certificate (Digital ID) from a trusted certificate authority &#8211; <a
href="http://www.memset.com/ssl.php">SSL certificates</a> do not cost much compared to the cost of securing your site! Ensure that your developer makes any sensitive forms redirect to HTTP versions of the site too. Why is SSL encryption important? Well if you&#8217;re accessing a Web site over normal HTTP using, say, a public Wifi then I can &#8220;sniff&#8221; (read) your traffic (with a little cleverness) just by being on that same Wifi network! End-to-end encryption is always best for all online communications &#8211; don&#8217;t trust the network.</p><p>Finally, if you are using a content management system like WordPress be sure to keep it updated. The number one culprit we see after bad passwords (see below) is a WordPress site that has not been updated in ages. The same goes for all software you put online &#8211; keep it updated! With the automated tools that allow you to do so there is no excuse not to. The number two is badly-written PHP sites by the way &#8211; see above!</p><h3>Password Management</h3><p>The majority of hacks are caused by bad passwords.  Its not just a simple matter of changing &#8216;l&#8217;s&#8217; to 1&#8242;s either, as these are still easy to hack. Anything based on a dictionary word or piece of memorable information is vulnerable. It is vastly better in my experience to choose a good password and then stick with it for that site rather than changing it often also.</p><p>We have performed rigorous mathematical analysis on how good a password needs to be by working out how much money it would take to crack if you had the password file and were using cloud computing. We determined that an 8 character random string formed from a-z, A-Z and 0- (using open source <a
href="http://sourceforge.net/projects/pwgen/">pwgen</a>) is adequate for the vast majority of purposes, costing about $100,000 to break.  A 10 character randomly generated password will cost $13m to crack using cloud computing and quite frankly there are easier ways for hackers to get your information for that amount of money!</p><p>We get all staff to choose an auto-generated password created PWgen. This approach is much better than making them choose their own (often guessable) one and changing it periodically (which means they need to write it down to remember it).</p><p>Finally, having lots of different passwords to remember can be a pain. There are packages to help though. For most Web sites I use my browser&#8217;s password safe, which is encrypted because my entire laptop is entrypted, though many have encryption options available. For other passwords such as banking details I keep them in a password safe called <a
href="http://www.keepassx.org/">KeePassX</a>. I then use a 16-character randomly generated password (from pwgen) as my master password and I don&#8217;t have to remember any others. You should really have one password per site but personally I group a few together based on how much I trust the sites. For banking <i>always</i> use a unique password per site though!</p><h3>Tight Controls on Accessing Data</h3><p>If you are allowing access to your Web site&#8217;s back end, for example for order fulfilment, that will often expose a vulnerability that a hacker could exploit. Therefore it is important that you ensure that any device accessing that &#8220;soft spot&#8221; is secure.</p><p>That should not stop you operating completely over the wire / in the cloud though. We allow all staff to access from anywhere using a laptop and a browser, using HTTPS for the security. However, we do not allow access from just any laptop; it must be a company one, we require that everyone follows good password practices (see above) and every person has their own unique loginl.</p><p>Unique logins for each member of staff is vital, so that you can react quickly in the event of a compromise. We have regularly tested and audited procedures for revoking user access quickly so that in the event of a lost laptop or compromised user password (or SSH key for command-line access to systems) we can rapidly change that user&#8217;s access credentials.</p><p>As an additional precaution, any laptop that is used to store company data (most of it is in the cloud, but sometimes information is stored locally) must have an encrypted hard drive.</p><p>In conjunction with requiring that everyone uses a screen saver password lock our company laptops are effectively impervious even if stolen while running and decrypted in RAM. No data can be retrieved since the thief would have to power down the machine in order to access the drive.</p><h3>Personnel / &#8216;purchase key&#8217; attacks</h3><p>The biggest security weak-point for any organisation is its people. A determined attacker will not bother with trying to steal servers nor hack into them, but will attempt to gain leverage over key members of staff; the &#8220;purchase key attack&#8221;. To protect yourself and your data, you should look to take steps to mitigate the risks. These are some of the things we do at Memset:</p><ol><li>All staff with access to company and customer data are CRB / background checked.</li><li>Access to servers is gained via personal keys and all activity is logged.</li><li>Access to Web-based systems is gained via personal credentials and all activity is logged.</li><li>Logs and activity should be routinely checked by head of security.</li></ol><h3>Carefully Select Your Hosting Provider</h3><p>The only thing one can really do about bot nets is to have more bandwidth than the attacker (ie. an army of hijacked home computers), which is yet another reason why companies should be giving up owning and managing their own data centres and moving to the cloud where providers like us have gigabits of connectivity so can withstand such attacks, which happen frequently.</p><p>We also have firewall technology to dynamically detect and block attacking IPs in real time. This sort of cyber warfare is not new though, but has only recently made the news. We have been fighting off such attacks for as long as I have been in the hosting industry (12 years). All that has changed is the scale of the weaponry.</p><p>Finally, at Memset we are very upfront about our approach to <a
href="http://www.memset.com/about-us/security.php">secure hosting</a>. I would be strongly suspiscious of a provider that was unwilling to share with you how they protect your data. Be sure to ask them and look for externally-audited credentials like the well-recognised ISO 27001 Information Security Management System.</p> ]]></content:encoded> <wfw:commentRss>http://www.katescomment.com/protect-your-site-from-cyber-crime/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>What Is Cloud Computing?</title><link>http://www.katescomment.com/what-is-cloud-computing/</link> <comments>http://www.katescomment.com/what-is-cloud-computing/#comments</comments> <pubDate>Tue, 04 Oct 2011 13:18:19 +0000</pubDate> <dc:creator>katecw</dc:creator> <category><![CDATA[Technovation]]></category> <category><![CDATA[Business]]></category> <category><![CDATA[cloud]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[outsourcing]]></category> <category><![CDATA[virtualisation]]></category> <guid
isPermaLink="false">http://www.katescomment.com/?p=911</guid> <description><![CDATA[Here I provide a less technical description of cloud computing, which can be regarded as essentially the provision of computing resources and/or software as a utility, in the same way that your business uses familiar utilities, such as electricity, water, gas etc. Cloud computing enables you to pay for computing resources as you need them. These services are provided over the internet, on a consumption-based pay-as-you-use model, with short-term contracts and without up-front expenditure.]]></description> <content:encoded><![CDATA[<p><a
href="http://cdn.katescomment.com/wordpress/wp-content/uploads/2010/02/CloudCube1.png" target=_"blank"><img
style="float: right; margin-left: 10px;" src="http://cdn.katescomment.com/wordpress/wp-content/uploads/2010/02/CloudCube_3001.png" alt="NIST's Cloud definition, on a cube" /></a> The picture to the right gives you an idea of the complexity of the concept of cloud, but here I am going to try and highlight a selection of the key features &#8211; a description for laypeople. See my article &#8220;<a
href="/definition-of-cloud-computing-nist-g-cloud/" title="Definition of cloud computing">definition of cloud computing incorporating NIST and G-Cloud views&#8221;</a>, and my post defining the <a
href="/iaas-paas-saas-definition/" title="IaaS vs PaaS vs SaaS definition">differences between IaaS, PaaS and SaaS</a>.</p><p>Cloud computing can be regarded as essentially the provision of computing resources and/or software as a utility, in the same way that your business uses familiar utilities, such as electricity, water, gas etc. Cloud computing enables you to pay for computing resources as you need them. These services are provided over the internet, on a consumption-based pay-as-you-use model, with short-term contracts and without up-front expenditure.</p><p>Whether you realise it or not, you&#8217;re probably already using cloud-based services. Facebook and Google are two prominent companies offering cloud-based software as a free online service to billions of users across the world. Google, for example, hosts a set of online productivity tools and applications in the cloud such as email, word processing, calendars, photo sharing, and website creation tools.</p><p>Broadly speaking, to be considered &#8220;cloud computing&#8221; an application&#8217;s data and core processing functions would be hosted/stored and managed online or ‘in the cloud’, and accessible from any PC, laptop or mobile device with a network connection in real-time.</p><blockquote><p>In this context, &#8220;in the cloud&#8221; actually means that the application, along with the data it uses, is installed one or many powerful computers called servers, which are similar to home computers but in a different form factor and without screens, that reside within specially adapted buildings called data centres. Data centres are like warehouses filled with banks of servers in cabinets called racks. Data centres have powerful air conditioning systems to keep the servers cool and highly resilient power and internet connections. A picture of one of ours before being filled up is <a
href="http://www.memset.com/about-us/datacentre.php" title="data centre">here</a>.</p></blockquote><p><strong>Three Flavours of Cloud &#8211; the &#8220;service models&#8221;</strong></p><p>One of the biggest confusions over cloud comes from the fact that it actually applies to a number of different layers in the &#8220;stack&#8221;. Don&#8217;t worry about what I mean by the stack, but if you&#8217;re curious see <a
href="/iaas-paas-saas-definition/" title="IaaS vs PaaS vs SaaS definition">this post</a>. There are three flavours of cloud, which broadly go down in cost but up in the required level of technical know-how in the order I have listed below:</p><p><strong>Software-as-a-Service (SaaS)</strong></p><p>These are usually applications or services that you access via a Web browser. Google Mail and Google Docs are examples of this kind of cloud computing. Some companies host an application on the internet that many users sign-up for and use without any concern about where, how, by whom the compute cycles and storage bits are provided.</p><p>Some SaaS is delivered via customised client applications, for example if you use Twitter or Facebook from an app on your phone. Our own <a
href="http://www.squirrelsave.co.uk" title="SquirrelSave cloud backup">SquirrelSave personal cloud backup</a> product is also an example of SaaS in that sense &#8211; you, the user, doesn&#8217;t have to worry about where the data is getting stored nor the internal workings of the platform we have developed.</p><p>A better term than “software” might be “application”, since the platform part is also really just software, but SaaS has already gained wide acceptance. SaaS is usually the most expensive form of cloud since you are paying for the software as well as the underlying infrastructure and it requires no technical know-how. Examples of paid SaaS include Salesforce.com, though presently the most widely known examples are &#8220;free&#8221;. Of course, nothing is truly free, and by giving away their services companies like Facebook and Google are getting something &#8211; your information and time.</p><p><strong>Platform-as-a-Service (PaaS)</strong></p><p>This is a set of lower-level services such as an operating system or computer language interpreter or web server offered by a cloud provider to software developers. Developers write their application to a more or less open specification and then upload their code into the cloud where the app is hosted and automagically scalled without the developer having to worry about it overly. Microsoft Windows Azure and Google App Engine are examples of PaaS.</p><p>In old-school hosting parlance, a managed hosting service might also be considered PaaS &#8211; the developer gives the hosting provider some code, and the provider worry about how many servers, how much bandwidth (internet connectivity), etc. and just give the developer one bill. Because of the auto-scaling and ease-of-use afforded by PaaS, and the abstraction/obfuscation it gives the vendor, it usually costs a premium over renting the underlying infrastructure directly (IaaS).</p><blockquote><p>For the more astute readers: You might hear people say that that Facebook is also a &#8220;platform&#8221;. This can easily get confusing; yes they provide a platform for developers to make add-ons, like the popular game FarmVille, but in reality they are just being a gateway (FarmVille runs on servers outside Facebook&#8217;s data centres) and are not providing any computer resources, so they are not providing PaaS. A similar example is Apple&#8217;s iOS platform &#8211; they provide tools to developers and a gateway to sell their apps (the app store) but if those applications that have a cloud component will likely be using IaaS or PaaS from elsewhere.</p></blockquote><p><strong>Infrastructure-as-a-Service (IaaS)</strong></p><p>IaaS is the provision of virtual servers and storage that organisations use on a pay-as-you-go basis. This is the most powerful type of cloud in that virtually any application and any configuration that is fit for the internet can be mapped to this type of service, but is also the most technically challenging to exploit. Amazon&#8217;s Elastic Compute Cloud (EC2) and Simple Storage Service (S3) are examples of IaaS, as are our own <a
href="http://www.memset.com/cloud/compute/" title="Cloud compute virtual servers">Miniserver VM® cloud compute</a> and <a
href="http://www.memset.com/cloud/storage/" title="Cloud storage">Memstore™ cloud storage</a> services.</p><p>In practice, cloud suppliers often provide additional services alongside IaaS offerings, so the boundary between IaaS and PaaS can become blurred. However in its purest form compute IaaS can be considered as a bunch of unmanaged virtual machines (VMs) for which you provide the operating system image, that can be scaled up and down (by spinning up and tearing down VMs) according to your application&#8217;s needs in near-real time (ie. within minutes). IaaS data storage is more simple, working like a giant disk drive where you only get billed for what you are using, usually on an hour-by-hour basis.</p><blockquote><p>A virtual server or virtual machine (VM), is just like a normal server but is smaller in terms of CPU, RAM and disk than a whole physical server, and several sit on each physical host server. We typically put about 15 VMs on each host server, for example. VMs have the advantage that they can be created and destroyed effectively in real-time in dynamic response to demand.</p></blockquote><p><strong>Private vs. Public &#8211; &#8220;deployment models&#8221;</strong></p><p>As well as IaaS, PaaS and SaaS (the &#8220;service models&#8221;), cloud has a number of &#8220;deployment models&#8221;. The ones I&#8217;m going to focus on here are &#8220;private&#8221; and &#8220;public&#8221; cloud. There are also &#8220;community&#8221; and &#8220;hybrid&#8221; clouds, but I&#8217;m going to save that for a later article. Also, here I am just going to briefly cover what public and private cloud means in the IaaS context.</p><p>Public cloud means that your virtual machines are sat on the same physical host servers as other clients. A private cloud is where the host servers, and in some cases the physical network or even an entire data centre facility, is dedicated to one client. When most people say &#8220;private cloud&#8221; what they usually mean is &#8220;a company&#8217;s own data centre with some virtualisation software&#8221;. This is arguably not cloud since you lose the scalability aspect. When we, as a cloud provider, say &#8220;<a
href="http://www.memset.com/cloud/private/" title="Private cloud">private cloud</a>&#8220;, we mean infrastructure dedicated to one client that we scale (by adding dedicated host servers into their set from our standby pool) as necessary. Some people would call that a &#8220;virtual private cloud&#8221;.</p><p><strong>Moving To The Cloud?</strong></p><p>One of the great things about cloud is that it can be experimented with very cheaply. If you are looking to make use of cloud services then I suggest just dive in! Start small, with one service, and then move more services once you are ready.</p><p>Analysts have indicated that future technology leaders will gravitate to cloud-based models as a way to deploy software and to store content, and we are certainly seeing that trend. A lot of customer start using our cloud as their development &#8220;sandbox&#8221;, costing a few £10s of pounds per month, and as they gain confidence gradually migrate more critical applications across.</p> ]]></content:encoded> <wfw:commentRss>http://www.katescomment.com/what-is-cloud-computing/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Supply Chain Disintegration: A better way to buy IT</title><link>http://www.katescomment.com/supply-chain-disintegration/</link> <comments>http://www.katescomment.com/supply-chain-disintegration/#comments</comments> <pubDate>Thu, 01 Oct 2009 10:20:15 +0000</pubDate> <dc:creator>Katy</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[Business]]></category> <category><![CDATA[cloud]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[outsourcing]]></category> <guid
isPermaLink="false">http://www.katescomment.com/?p=200</guid> <description><![CDATA[Unfortunately IT suppliers are not immune from the global economy and can fail just like any other company. I believe the best way you can protect yourself is by disintegrating the IT services supply chain. I shall explain...
]]></description> <content:encoded><![CDATA[<p><img
style="margin-left: 10px;" src="http://cdn.katescomment.com/wordpress/wp-content/uploads/2009/10/eggs-basket_300.jpg" alt="All your eggs in one basket" />The best way you can protect yourself from IT suppliers going bust is by disintegrating the IT services supply chain. The rationale goes like this: Do not host your software with the same people that build it (eg. Salesforce.com or Google) since all your eggs are in one basket.</p><p>Instead, purchase your software from one provider, but have a direct relationship with the host. Some of our customers are starting to do this with us and Zimbra. Zimbra is sort-of like Google docs, but open source, and they host it with us, and <a
href="http://www.tweetbackup.net">backup</a> to a third-party host (which is cheap to do).</p><p><em><strong>Good for resellers too</strong></em></p><p>Managing the backup and hosting process might be a new way that resellers can differentiate their offering or add value to the supply chain as more and more businesses look to protect their data as they move to a <a
href="/the-definition-of-cloud-computing">Cloud Computing</a> model. Ensuring ease of data migration between cloud providers is paramount for businesses moving forward.</p><p>By not being tied to one provider, a business could easily migrate to another host, or if Zimbra becomes unsupported, for example, they would not lose their data, and we would carry on hosting while they work with us to find a new software solution. If we fail, they still have their data and Zimbra can help them get set up again. We (the <a
href="http://www.memset.com/">managed hosting</a> provider in this example) would not own their data even if we did fail, but no harm in belt-and-braces.</p><p><em><strong>Hosting commoditisation is here</strong></em></p><p>Software providers cannot realistically compete in today&#8217;s commoditised hosting market place, and instead should stick to their strengths. This also applies to migrations &#8211; when moving customers between hosts there are now companies that specialise in the migration itself but have no interest in selling software nor hosting. One such company is <a
href="http://migrations.semsolutions.co.uk/memset/">SEM Solutions</a>, with whom we have recently started working.</p><p>Another big win from supply chain disintegration is that you gain total price transparency; no more getting stitched up by one provider who is just whacking a huge mark-up on a commodity service like hosting (yes, I&#8217;m talking to you, local government CIOs <img
src='http://cdn.katescomment.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p><p>Not only does it show you which bits cost what, thus allowing you to compare with the market rates, but disintegrating the supply chain also makes migration to a new Cloud / managed hosting provider easy since you just need to work with the software supplier to migrate to the new host, and are not tied in to one provider. Equally, since you own the data on the service (because you are buying the hosting direct), moving to a new software provider is greatly simplified.</p><p><em><strong>Eating my own dog food</strong></em></p><p>So, do I take my own advice? Yes; Memset is one of the fastest growing technology SMEs in the country, and all our business critical information and systems are hosted in the Cloud (or at least our little bit of it) and accessed over the Web. None of my staff have Microsoft Office, we do not pay for any software, and we do not need servers in our office for administration applications. Everyone has a laptop, and since all our systems and documents (we use a Wiki for the latter) are hosted online everyone can work from home without the complications of a VPN. We do not use any paper for internal communications either, thus minimising &#8220;the printer has broken&#8221; type problems.</p><p>We also use <a
href="http://trac.edgewall.org/" target="_blank">Trac</a> project management and documentation management system for all our internal documentation, task and project management. It is free and simple to host yourself with any managed hosting provider. Simple, scalable systems like Trac have also made it easy for us to obtain and maintain our quality, security and environmental management systems (ISO9001, ISO27001 &amp; ISO14001 accreditations).</p> ]]></content:encoded> <wfw:commentRss>http://www.katescomment.com/supply-chain-disintegration/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>BCS Data Centre Cost &amp; Energy Simulator beta released</title><link>http://www.katescomment.com/bcs-data-center-simulator/</link> <comments>http://www.katescomment.com/bcs-data-center-simulator/#comments</comments> <pubDate>Thu, 28 May 2009 12:05:08 +0000</pubDate> <dc:creator>Katy</dc:creator> <category><![CDATA[Technovation]]></category> <category><![CDATA[datacentre]]></category> <category><![CDATA[Environment]]></category> <category><![CDATA[hosting]]></category> <category><![CDATA[virtualisation]]></category> <guid
isPermaLink="false">http://www.katescomment.com/?p=162</guid> <description><![CDATA[The British Computer Society's Data Centre Specialist Group has released a beta version of their data centre cost and energy simulator to members of the specialist group. The simulator has come out of the Carbon Trust's Low Carbon Collaboration initiative jointly funded by BCS and Romonet. Here are my first impressions from the preview a few weeks ago.]]></description> <content:encoded><![CDATA[<p>The British Computer Society&#8217;s Data Centre Specialist Group has released a beta version of their data centre cost and energy simulator to members of the specialist group. The simulator has come out of the Carbon Trust&#8217;s Low Carbon Collaboration initiative jointly funded by BCS and Romonet.</p><p>I was at the preview of this tool on 30th April in Southampton Street, and it is an amazingly powerful tool. It allow you to rapidly put together a simulated version of your data centre (including characteristics of everything from power cables to server virtualisation systems to external temperature variation), and then &#8216;run&#8217; it over a period of time to see the costs and power requirements.</p><p>During the demonstration in April, Liam &#038; Zahl (the technical and business brains behind the project) used the tool to great effect, neatly and intuitively demonstrating some of the following:</p><ul><li>The inadequacies of DCiE/PUE as useful a metric due to variation with light work loads; you need to measure facilities power and IT power separately.</li><li>How virtualisation drops the total cost of a datacenter by 75% or more (or you can migrate to us and save >85% of course <img
src='http://cdn.katescomment.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</li><li>How simply changing from nameplate (typically >400W on the label on the back of a£1,000 1U server) to peak power provisioning (most modern 1U servers never use more than 150W) reduces the 4-year  lifetime server cost from £8,000 to just £5,000.</li><li>That a modular build-out is good, but to be most energy- &#038; cost-efficient you really need a dynamic modular approach so that you can switch M&#038;E equipment on/off with diurnal load variations.</li><li>How data centre costs vary with geo-location! Putting it in Iceland does not save you much after all, contrary to popular belief.</li></ul><p>The simulator itself is a pure command-line driven tool that has been released under an open source software licence (OSL V3.0), but there is a Web-based interface that is now available to DCSG members, <a
href="http://dcsg.bcs.org//content/view/51/60/">here</a>, although you will need to read the user guide first unless you have a brain the size of a planet.. If you are a member of the BCS but not of the DCSG, you can find out information here: <a
href="http://bcs.dcsg.org">bcs.dcsg.org</a>. If you are not a member of the <a
href="http://bcs.org">BCS</a> but are British and an IT professional, then shame on you!</p><p>The beta test is likely to last until Autumn, and feedback is welcomed so that the tool can be further improved and any bugs ironed out. Also, the Carbon Trust and BCS are looking for members willing to trial the tool on a case-study basis over the next few months. If you are interested, visit the <a
href="http://www.carbontrust.co.uk/datacentres">Carbon Trust data centre sub-site</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.katescomment.com/bcs-data-center-simulator/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 2/22 queries in 0.005 seconds using apc
Object Caching 346/383 objects using apc
Content Delivery Network via cdn.katescomment.com

Served from: www.katescomment.com @ 2012-02-04 14:56:38 -->
