<?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: Solving &#8220;XAMPP:  Couldn&#8217;t start MySQL!&#8221;</title>
	<atom:link href="http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/</link>
	<description>The place for interesting things</description>
	<lastBuildDate>Tue, 07 Feb 2012 11:40:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Nico</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-2/#comment-42325</link>
		<dc:creator>Nico</dc:creator>
		<pubDate>Tue, 03 Jan 2012 17:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-42325</guid>
		<description>Thank you very much! It helped me a lot!!</description>
		<content:encoded><![CDATA[<p>Thank you very much! It helped me a lot!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danish Satkut</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-2/#comment-42321</link>
		<dc:creator>Danish Satkut</dc:creator>
		<pubDate>Fri, 30 Dec 2011 20:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-42321</guid>
		<description>For people who have changed the ownership from &quot;nobody&quot; to other users, change back the ownership to nobody for the entire package using:

sudo chown -hR nobody /opt/lampp

After executing the above command, make your htdocs accessible using the command listed in above post(point no. 2)

This may result in a phpMyAdmin error. To tackle this problem, change the ownership of /opt/lampp/phpmyadmin and permissions accordingly:

sudo chown -hR username /opt/lampp/phpmyadmin
sudo chmod 755 /opt/lampp/phpmyadmin

This will remove any phpmyadmin error.</description>
		<content:encoded><![CDATA[<p>For people who have changed the ownership from &#8220;nobody&#8221; to other users, change back the ownership to nobody for the entire package using:</p>
<p>sudo chown -hR nobody /opt/lampp</p>
<p>After executing the above command, make your htdocs accessible using the command listed in above post(point no. 2)</p>
<p>This may result in a phpMyAdmin error. To tackle this problem, change the ownership of /opt/lampp/phpmyadmin and permissions accordingly:</p>
<p>sudo chown -hR username /opt/lampp/phpmyadmin<br />
sudo chmod 755 /opt/lampp/phpmyadmin</p>
<p>This will remove any phpmyadmin error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danish Satkut</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-42320</link>
		<dc:creator>Danish Satkut</dc:creator>
		<pubDate>Fri, 30 Dec 2011 19:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-42320</guid>
		<description>The problem is due to the fact that XAMPP package is installed for &quot;nobody&quot; user including the mysql and web server. So I am giving a short tutorial on how to make it work:

1) After downloading your XAMPP package, do not use any GUI utility to extract it. please use the tar command with root permission (So that you can access you /opt directory)

sudo tar -xzvf xampp-package-name -C /opt/

Using the archival tools other than tar will result in problems.

2) When you execute the above command, the directory is inaccessible to you as a normal user. To access this directory you will need root privileges with sudo command. This is a problem while developing. As a workaround, we will make htdocs accessible by your current user using the following commands.

sudo chown -hR username /opt/lampp/htdocs
sudo chmod -R 755 /opt/lampp/htdocs

The above method wont show any warning as the lampp directory is not accessible to the world (except for htdocs). The above method works because mysql requires access to the /opt/lampp directory as &quot;nobody&quot;. When you perform chown for your user, nobody comes under others and 755 wont work and the only solution is 777 (which is bad).</description>
		<content:encoded><![CDATA[<p>The problem is due to the fact that XAMPP package is installed for &#8220;nobody&#8221; user including the mysql and web server. So I am giving a short tutorial on how to make it work:</p>
<p>1) After downloading your XAMPP package, do not use any GUI utility to extract it. please use the tar command with root permission (So that you can access you /opt directory)</p>
<p>sudo tar -xzvf xampp-package-name -C /opt/</p>
<p>Using the archival tools other than tar will result in problems.</p>
<p>2) When you execute the above command, the directory is inaccessible to you as a normal user. To access this directory you will need root privileges with sudo command. This is a problem while developing. As a workaround, we will make htdocs accessible by your current user using the following commands.</p>
<p>sudo chown -hR username /opt/lampp/htdocs<br />
sudo chmod -R 755 /opt/lampp/htdocs</p>
<p>The above method wont show any warning as the lampp directory is not accessible to the world (except for htdocs). The above method works because mysql requires access to the /opt/lampp directory as &#8220;nobody&#8221;. When you perform chown for your user, nobody comes under others and 755 wont work and the only solution is 777 (which is bad).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ernemir</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-42313</link>
		<dc:creator>ernemir</dc:creator>
		<pubDate>Fri, 09 Dec 2011 02:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-42313</guid>
		<description>I have to stop lammp and then start again. Doesn&#039;t work with &quot;sudo ./lamp restart&quot; option</description>
		<content:encoded><![CDATA[<p>I have to stop lammp and then start again. Doesn&#8217;t work with &#8220;sudo ./lamp restart&#8221; option</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oharapedro</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-42309</link>
		<dc:creator>oharapedro</dc:creator>
		<pubDate>Tue, 22 Nov 2011 21:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-42309</guid>
		<description>Cierto!!!!!!!!!!!
Debemos usar el comando tar xvfz xampp-linux-1.7.7.tar.gz -C /opt para instalarlo ESA ES LA SOLUCION AL PROBLEMA (NO desde la ventana con el clic redecho, extraer).... Me quebré la cabeza buscando una solución y fue tan simple :D</description>
		<content:encoded><![CDATA[<p>Cierto!!!!!!!!!!!<br />
Debemos usar el comando tar xvfz xampp-linux-1.7.7.tar.gz -C /opt para instalarlo ESA ES LA SOLUCION AL PROBLEMA (NO desde la ventana con el clic redecho, extraer)&#8230;. Me quebré la cabeza buscando una solución y fue tan simple <img src='http://www.compdigitec.com/labs/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: geomorillo</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-24476</link>
		<dc:creator>geomorillo</dc:creator>
		<pubDate>Fri, 10 Jun 2011 08:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-24476</guid>
		<description>yeah tar -xvzf ...... worked fine</description>
		<content:encoded><![CDATA[<p>yeah tar -xvzf &#8230;&#8230; worked fine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pr1s0ner</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-24141</link>
		<dc:creator>pr1s0ner</dc:creator>
		<pubDate>Tue, 24 May 2011 22:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-24141</guid>
		<description>Had the same problem, Can not start MySQL.
Re-extracting files using tar -xvzf ***xampp_file*** instead of file roller fixed</description>
		<content:encoded><![CDATA[<p>Had the same problem, Can not start MySQL.<br />
Re-extracting files using tar -xvzf ***xampp_file*** instead of file roller fixed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xasx</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-23861</link>
		<dc:creator>xasx</dc:creator>
		<pubDate>Sat, 30 Apr 2011 13:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-23861</guid>
		<description>Addendum: My above comment assumes you do not have lampp already installed on your computer. If you do have it installed, go to places-computer-filesystem- and open opt file as administrator using (Nautilus-gksu) and delete lampp folder. Then reboot computer and follow the rest of my instructions above from there. Remember, with apache and linux, often you must reboot computer for changes to take effect. Cheers!</description>
		<content:encoded><![CDATA[<p>Addendum: My above comment assumes you do not have lampp already installed on your computer. If you do have it installed, go to places-computer-filesystem- and open opt file as administrator using (Nautilus-gksu) and delete lampp folder. Then reboot computer and follow the rest of my instructions above from there. Remember, with apache and linux, often you must reboot computer for changes to take effect. Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xasx</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-23860</link>
		<dc:creator>xasx</dc:creator>
		<pubDate>Sat, 30 Apr 2011 13:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-23860</guid>
		<description>Here is my 2 cents on how to get it to work. First, (this is assuming you are using Ubuntu 10.04 or higher and have nautilus-gksu installed.) Download current version of lampp from http://www.apachefriends.org/en/xampp-linux.html#374. After download go to places-computer-filesystem-and left click and open opt file as administrator. Drag the downloaded .tar lampp file into your opt file and extract it there. After file has been extracted, delete the .tar file. Now try to start lampp in a terminal by /opt/lampp/lampp start and now you should have no problem with permissions and mysql should work.</description>
		<content:encoded><![CDATA[<p>Here is my 2 cents on how to get it to work. First, (this is assuming you are using Ubuntu 10.04 or higher and have nautilus-gksu installed.) Download current version of lampp from <a href="http://www.apachefriends.org/en/xampp-linux.html#374" rel="nofollow">http://www.apachefriends.org/en/xampp-linux.html#374</a>. After download go to places-computer-filesystem-and left click and open opt file as administrator. Drag the downloaded .tar lampp file into your opt file and extract it there. After file has been extracted, delete the .tar file. Now try to start lampp in a terminal by /opt/lampp/lampp start and now you should have no problem with permissions and mysql should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swaroop</title>
		<link>http://www.compdigitec.com/labs/2009/05/30/solving-xampp-couldnt-start-mysql/comment-page-1/#comment-23474</link>
		<dc:creator>Swaroop</dc:creator>
		<pubDate>Sat, 09 Apr 2011 09:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=102#comment-23474</guid>
		<description>GUUYYSSS.. You all rock.. It worked like charm...</description>
		<content:encoded><![CDATA[<p>GUUYYSSS.. You all rock.. It worked like charm&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

