<?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>Wade Womersley - Leeds based web developer &#187; Support</title>
	<atom:link href="http://www.xcitestudios.com/blog/category/support/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xcitestudios.com/blog</link>
	<description>Giving in to the online blogosphere</description>
	<lastBuildDate>Thu, 15 Jul 2010 21:29:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reset MySQL root password if you forgot it #mysql</title>
		<link>http://www.xcitestudios.com/blog/2010/04/12/reset-mysql-root-password-if-you-forgot-it-mysql/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2010/04/12/reset-mysql-root-password-if-you-forgot-it-mysql/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 11:32:56 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=463</guid>
		<description><![CDATA[<p>Just had a need to reset the mysql root login password for a server, did a bit of Googling and found out this is how you do it (I work on Ubuntu so you may have to tinker with the lines slightly depending on your distribution):</p>
<p><a href="http://www.xcitestudios.com/blog/2010/04/12/reset-mysql-root-password-if-you-forgot-it-mysql/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Reset MySQL root password if you forgot it #mysql&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li>
<li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li>
<li><a href='http://www.xcitestudios.com/blog/2009/09/03/todays-musings/' rel='bookmark' title='Permanent Link: Today&#8217;s musings'>Today&#8217;s musings</a></li>
</ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li>
<li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li>
<li><a href='http://www.xcitestudios.com/blog/2009/09/03/todays-musings/' rel='bookmark' title='Permanent Link: Today&#8217;s musings'>Today&#8217;s musings</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just had a need to reset the mysql root login password for a server, did a bit of Googling and found out this is how you do it (I work on Ubuntu so you may have to tinker with the lines slightly depending on your distribution):</p>
<ol>
<li>Stop the current MySQL instance from running:<br />
<em>/etc/init.d/mysql stop</em></li>
<li>Run mysql with &#8211;skip-grant-tables<br />
<em>/usr/bin/mysqld_safe &#8211;basedir=/usr &#8211;datadir=/var/lib/mysql &#8211;user=mysql &#8211;pid-file=/var/run/mysqld/mysqld.pid &#8211;socket=/var/run/mysqld/mysqld.sock &#8211;port=3306 &#8211;skip-grant-tables &amp;</em></li>
<li>Log into mysql, straight into the mysql database<em><br />
mysql -u root mysql</em></li>
<li>Reset the root password.<br />
<em>UPDATE user SET Password=PASSWORD(‘newrootpassword’) WHERE User=’root’;</em></li>
<li>Flush privileges<br />
<em>flush privileges;</em></li>
<li>Shut down the new running mysql.<br />
<em>/etc/init.d/mysql stop</em></li>
<li>Start up mysql as usual.<br />
<em>/etc/init.d/mysql start</em></li>
</ol>
<p>Et voila, you now have a new root password without needing to know the old one!</p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li>
<li><a href='http://www.xcitestudios.com/blog/2010/01/31/mysql-and-binary16-the-reasonsbenefitsdrawbacks-mysql/' rel='bookmark' title='Permanent Link: MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)'>MySQL and Binary(16) &#8211; The Reasons/Benefits/Drawbacks (#mysql)</a></li>
<li><a href='http://www.xcitestudios.com/blog/2009/09/03/todays-musings/' rel='bookmark' title='Permanent Link: Today&#8217;s musings'>Today&#8217;s musings</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2010/04/12/reset-mysql-root-password-if-you-forgot-it-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superb VPS (Virtual Private Server) Provider &#8211; VPS.net Review</title>
		<link>http://www.xcitestudios.com/blog/2009/11/18/superb-vps-virtual-private-server-provider-vps-net/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2009/11/18/superb-vps-virtual-private-server-provider-vps-net/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:47:49 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[PHP Conference 2010]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=337</guid>
		<description><![CDATA[<p><img class="alignright" title="3d servers over a white background" src="/blog/wp-content/uploads/crestockimages/229473-ms.jpg" alt="3d servers over a white background" width="243" height="178" />A few months ago at work we realised the need for lots of &#8220;nodes&#8221; (servers) in the UK and in the US initially. We have a lot of data processing that we need to do and we worked out it would be faster and cheaper if we could distribute the work over lots of servers rather than a few beefy servers. <a href="http://www.dancryer.com/" target="_blank">Dan</a> started looking around and found <a href="http://www.vps.net/?bid=190&#38;aid=CD3056&#38;opt=" target="_blank">VPS.net</a>, they looked good so we thought we&#8217;d give them a go. Of course we didn&#8217;t want to &#8220;put all our eggs in one basket&#8221; so we took out some VPS servers with different companies too. A few months later, the only servers we&#8217;ve been continuously happy with are the <a href="http://www.vps.net/?bid=190&#38;aid=CD3056&#38;opt=" target="_blank">VPS.net</a> servers.</p>
<p><a href="http://www.xcitestudios.com/blog/2009/11/18/superb-vps-virtual-private-server-provider-vps-net/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Superb VPS (Virtual Private Server) Provider &#8211; VPS.net Review&#8230;</a></p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li>
</ol></p>


Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="3d servers over a white background" src="/blog/wp-content/uploads/crestockimages/229473-ms.jpg" alt="3d servers over a white background" width="243" height="178" />A few months ago at work we realised the need for lots of &#8220;nodes&#8221; (servers) in the UK and in the US initially. We have a lot of data processing that we need to do and we worked out it would be faster and cheaper if we could distribute the work over lots of servers rather than a few beefy servers. <a href="http://www.dancryer.com/" target="_blank">Dan</a> started looking around and found <a href="http://www.vps.net/?bid=190&amp;aid=CD3056&amp;opt=" target="_blank">VPS.net</a>, they looked good so we thought we&#8217;d give them a go. Of course we didn&#8217;t want to &#8220;put all our eggs in one basket&#8221; so we took out some VPS servers with different companies too. A few months later, the only servers we&#8217;ve been continuously happy with are the <a href="http://www.vps.net/?bid=190&amp;aid=CD3056&amp;opt=" target="_blank">VPS.net</a> servers.</p>
<p>There pricing is one of their best features, you can get a &#8220;single node&#8221; VPS with some basic specs of 400Mhz processor, 256MB RAM, 10GB storage and 250GB bandwidth (what this site is running on currently) for £15 a month. £15 may seem a little steep to some people to start with but when you realise this is for your own root access Virtual Server (i.e. you can pretty much do anything you want with it like it was at home) it isn&#8217;t that bad at all! What makes it better though is, as you buy more nodes, the price comes down for each additional node, so the first node may be £15, but the second is only £14 and so on all the way down to £9 per node.</p>
<p><a href="http://www.vps.net/?bid=190&amp;aid=CD3056&amp;opt=" target="_blank">VPS.net</a>&#8217;s idea of nodes is also very cool. You can buy up to 16 nodes that work as one VPS, and you can change this at any time. Lets say you were me with one node and suddenly you got a surge of visitors and it just couldn&#8217;t handle the load anymore, not a problem, simply buy an extra node, attach it to the VPS and you&#8217;ll immediately get the benefit of it, no need to re-install your VPS or anything!</p>
<p>They also have automated full node backups for £4 a month too, they take a daily, weekly and monthly backup that you can restore from at any time, so if you totally screw up your server, just hit yesterday&#8217;s backup and voila! Back to normal again. Not only that, if the actual server your VPS is on decides it&#8217;s time to die, they&#8217;ll boot your VPS up on another server within minutes, that doesn&#8217;t cost and is part of the service.</p>
<p>If your demands are for a webserver, they have free DNS management tools as well so you don&#8217;t have to use an external service, just point your domain at their nameservers.</p>
<p>So in summary, if you&#8217;re looking for a reliable, fast, cheap place to host a website or host nodes to perform data analysis, I&#8217;d certainly give <a href="http://www.vps.net/?bid=190&amp;aid=CD3056&amp;opt=" target="_blank">VPS.net</a> a go.</p>
<p>Review ends <img src='http://www.xcitestudios.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://www.xcitestudios.com/blog/2010/01/29/mysql-binary16-and-scalability/' rel='bookmark' title='Permanent Link: MySQL &#8211; Binary(16) and scalability'>MySQL &#8211; Binary(16) and scalability</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2009/11/18/superb-vps-virtual-private-server-provider-vps-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot Failure Fixing FlowChart Fun</title>
		<link>http://www.xcitestudios.com/blog/2009/09/01/boot-failure-fixing-flowchart-fun/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://www.xcitestudios.com/blog/2009/09/01/boot-failure-fixing-flowchart-fun/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 08:49:59 +0000</pubDate>
		<dc:creator>Wade</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.xcitestudios.com/blog/?p=13</guid>
		<description><![CDATA[<p>Next time you have a problem booting your PC, why not give this <em>simple </em>flow chart a go? It&#8217;s actually easier to use than it first looks, it just covers a lot of stuff.</p>
<p><a href="http://www.xcitestudios.com/blog/2009/09/01/boot-failure-fixing-flowchart-fun/#utm_source=feed&#38;utm_medium=feed&#38;utm_campaign=feed" class="more-link">Read more on Boot Failure Fixing FlowChart Fun&#8230;</a></p>


<p>No related posts.</p>


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Next time you have a problem booting your PC, why not give this <em>simple </em>flow chart a go? It&#8217;s actually easier to use than it first looks, it just covers a lot of stuff.</p>
<p><img class="alignnone size-full wp-image-14" title="repair_flow" src="http://www.xcitestudios.com/blog/wp-content/uploads/2009/09/500x_repair_flow.jpg" alt="repair_flow" width="500" height="502" /></p>
<p>The full thing can be found at <a href="http://www.fonerbooks.com/pcrepair.htm" target="_blank">fonerbooks</a>.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.xcitestudios.com/blog/2009/09/01/boot-failure-fixing-flowchart-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
