<?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>Aris Royo&#039;s Blog &#187; MySQL</title>
	<atom:link href="http://arisroyo.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://arisroyo.com</link>
	<description>Advocating and contributing to ideals of free software.</description>
	<lastBuildDate>Sat, 28 Jan 2012 06:15:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Install And Configure LAMP [Linux, Apache, MySql &amp; PHP]</title>
		<link>http://arisroyo.com/2011/05/06/install-and-configure-lamp-linux-apache-mysql-php/</link>
		<comments>http://arisroyo.com/2011/05/06/install-and-configure-lamp-linux-apache-mysql-php/#comments</comments>
		<pubDate>Fri, 06 May 2011 01:00:40 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.arisroyo.com/?p=464</guid>
		<description><![CDATA[Sharing some of my configuration using Linux Trisquel Gnu/Linux free operating software, as a web developer LAMP or Linux Apache MySql and PHP are some of standard application, database and tools that I use in daily programming life. Why Linux? Because it&#8217;s free and makes your laptop or desktop more powerful and advance in computing [...]]]></description>
			<content:encoded><![CDATA[<p>Sharing some of my configuration using Linux Trisquel Gnu/Linux free operating software, as a web developer LAMP or Linux Apache MySql and PHP are some of standard application, database and tools that I use in daily programming life.</p>
<p>Why Linux? Because it&#8217;s free and makes your laptop or desktop more powerful and advance in computing and not like propriety software every tools that you need in development you can get it free and more thing it&#8217;s really cool being free or open source developer.</p>
<p>Linux is your operating system that has a lot of flavor or faces that you can get and download for free, I personally using Trisquel Gnu/Linux that you may download at <a href="http://trisquel.info">http://trisquel.info</a></p>
<p>Now let&#8217;s start installing Apache, you must first login as root or administrator on your Linux machine.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php"><span class="php-var">$</span> sudo su</span></pre>
</div>
<p>Install in configure apache by calling the following command.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php"><span class="php-var">$</span> sudo aptitude install apache<span class="php-number">2</span></span></pre>
</div>
<p>The following path and command are some reference you need to know about apache in your machine.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
</pre>
<pre><span class="php"><span class="php-operator">/</span><span class="php-keyword">var</span><span class="php-operator">/</span>ww <span class="php-operator">-</span> Here is your <span class="php-keyword">default</span> document root<span class="php-operator">.</span>
<span class="php-operator">/</span>etc<span class="php-operator">/</span>apache<span class="php-number">2</span><span class="php-operator">/</span>apache<span class="php-number">2</span><span class="php-operator">.</span>conf <span class="php-operator">-</span> Configuration later we need to access this <span class="php-keyword">for</span> some modification<span class="php-operator">.</span>
 <span class="php-operator">/</span>etc<span class="php-operator">/</span>init<span class="php-operator">.</span>d<span class="php-operator">/</span>apache<span class="php-number">2</span> restart This the command to restart the Apache server
 <span class="php-operator">/</span>etc<span class="php-operator">/</span>init<span class="php-operator">.</span>d<span class="php-operator">/</span>apache<span class="php-number">2</span> stop This is the command to stop Apache server
 <span class="php-operator">/</span>etc<span class="php-operator">/</span>init<span class="php-operator">.</span>d<span class="php-operator">/</span>apache<span class="php-number">2</span> start This the command to start it again</span></pre>
</div>
<p>Now to install Mysql execute the command and make sure have properly record the password you provided to mysql database configuration.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php"><span class="php-var">$</span> sudo aptitude install mysql<span class="php-operator">-</span>server mysql<span class="php-operator">-</span>client</span></pre>
</div>
<p>Last to install the PHP execute the following command</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php"><span class="php-var">$</span> sudo aptitude install php<span class="php-number">5</span> libapache<span class="php-number">2</span><span class="php-operator">-</span>mod<span class="php-operator">-</span>php<span class="php-number">5</span></span></pre>
</div>
<p>To test the php restart the apache and create the following php script.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
</pre>
<pre><span class="php">Create <span class="php-function">phpinfo</span><span class="php-operator">.</span>php <span class="php-function">file</span> in <span class="php-operator">/</span><span class="php-keyword">var</span><span class="php-operator">/</span>www<span class="php-operator">/</span>
gedit <span class="php-operator">/</span><span class="php-keyword">var</span><span class="php-operator">/</span>www<span class="php-operator">/</span><span class="php-function">phpinfo</span><span class="php-operator">.</span>php
<span class="php-script-tag">&lt;?php</span> <span class="php-function">phpinfo</span><span class="php-brackets">(</span><span class="php-brackets">)</span>; <span class="php-script-tag">?&gt;<span class="html"></span></span></span></pre>
</div>
<p>Test it by calling localhost/phpinfo.php in your browser</p>
<p>No for additional you also like to install phpMyAdmin and Open JDK here the following command.</p>
<p>Installing phpMyadmin</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
</pre>
<pre><span class="php"><span class="php-var">$</span> sudo aptitude install phpmyadmin</span></pre>
</div>
<p>During configuration chose the following option</p>
<ul>
<li>Select apache 2 in Configuring phpMyAdmin</li>
<li>Select No in Configuring database for phpMyAdmin</li>
<li>Edit apache configuration /etc/apache2/apache2.conf by adding the following line-<strong>Include /etc/phpmyadmin/apache.conf</strong>
</li>
</ul>
<p>Installing open-jdk</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
</pre>
<pre><span class="php"><span class="php-var">$</span> aptitude install openjdk<span class="php-operator">-</span><span class="php-number">6</span><span class="php-operator">-</span>jre
<span class="php-var">$</span> aptitude install openjdk<span class="php-operator">-</span><span class="php-number">6</span><span class="php-operator">-</span>jdk</span></pre>
</div>
<p><br/></p>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2011/04/30/sharing-simple-php-web-application-project/" title="Sharing Simple PHP Web Application Project ">Sharing Simple PHP Web Application Project </a></li><li><a href="http://arisroyo.com/2012/01/20/when-internet-goes-dark-sopa/" title="When Internet Goes Dark [SOPA]">When Internet Goes Dark [SOPA]</a></li><li><a href="http://arisroyo.com/2012/01/12/php-w3schools-certified/" title="PHP w3Schools Certified">PHP w3Schools Certified</a></li><li><a href="http://arisroyo.com/2011/07/04/avg-free-linux-anti-virus/" title="AVG Free Linux Antivirus">AVG Free Linux Antivirus</a></li><li><a href="http://arisroyo.com/2011/05/12/php-is-a-templating-language/" title="PHP Is A Templating Language">PHP Is A Templating Language</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2011/05/06/install-and-configure-lamp-linux-apache-mysql-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing Simple PHP Web Application Project</title>
		<link>http://arisroyo.com/2011/04/30/sharing-simple-php-web-application-project/</link>
		<comments>http://arisroyo.com/2011/04/30/sharing-simple-php-web-application-project/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 14:00:01 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.arisroyo.com/?p=452</guid>
		<description><![CDATA[I&#8217;m sharing this simple PHP web application project that I found in my archive (Not in my closet), it’s for a cell phone loading station business I develop 8 years ago. This php application includes GSM module and component and unfortunately I can’t share it because it’s proprietary software and develop by other person. I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sharing this simple PHP web application project that I found in my archive (Not in my closet), it’s for a cell phone loading station business I develop 8 years ago.</p>
<p>This php application includes GSM module and component and unfortunately I can’t share it because it’s proprietary software and develop by other person.</p>
<p>I intended to share this application for education purpose only specially for those students who are aiming to study PHP programing language.</p>
<p>This application is not using any framework and I admit that this is not fully proof designed php application but this good enough to have example PHP and MySQL from scratch.</p>
<p>Please note that this is my first PHP application develop on year 2004 after I graduated, you may study it share, enhance distribute but again is not suitable for business use.</p>
<p>Here is the following technologies and component:<br />
1.	PHP<br />
2.	MySQL<br />
3.	Ajax<br />
4.	HTML<br />
5.	Java Script<br />
6.	ActiveWidgets that work only in IE (Proprietary Software) <img src='http://arisroyo.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  </p>
<p><strong>Read READ ME.txt for installation and configuration.</strong></p>
<p><strong>Download Source Code:</strong> <a href="http://blog.arisroyo.com/projects/?did=1">http://blog.arisroyo.com/projects/?did=1</a></p>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2011/05/06/install-and-configure-lamp-linux-apache-mysql-php/" title="Install And Configure LAMP [Linux, Apache, MySql &#038; PHP]">Install And Configure LAMP [Linux, Apache, MySql &#038; PHP]</a></li><li><a href="http://arisroyo.com/2012/01/20/when-internet-goes-dark-sopa/" title="When Internet Goes Dark [SOPA]">When Internet Goes Dark [SOPA]</a></li><li><a href="http://arisroyo.com/2012/01/12/php-w3schools-certified/" title="PHP w3Schools Certified">PHP w3Schools Certified</a></li><li><a href="http://arisroyo.com/2011/05/12/php-is-a-templating-language/" title="PHP Is A Templating Language">PHP Is A Templating Language</a></li><li><a href="http://arisroyo.com/2011/05/05/shop-pay-cash-facebook-apps/" title="Shop &#038; Pay Cash &#8211; Facebook Apps">Shop &#038; Pay Cash &#8211; Facebook Apps</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2011/04/30/sharing-simple-php-web-application-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Save MySql For The Future.</title>
		<link>http://arisroyo.com/2010/03/17/i-save-mysql-for-the-future/</link>
		<comments>http://arisroyo.com/2010/03/17/i-save-mysql-for-the-future/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 00:00:26 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[World]]></category>
		<category><![CDATA[Fork]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.arisroyo.com/?p=131</guid>
		<description><![CDATA[After Oracle win in European Commission to buy Sun Microsystems and to take over the management and development of MySql (Which I totally doubt), I start to download all Available Mysql Source code. I got a source code of Mysql 4.0 and all the version and build of Mysql 5.0, In case Oracle do some [...]]]></description>
			<content:encoded><![CDATA[<p>After Oracle win in European Commission to buy Sun Microsystems and to take over the management and development of MySql (Which I totally doubt), I start to download all Available Mysql Source code.<br />
<br/><br />
I got a source code of Mysql 4.0 and all the version and build of Mysql 5.0, In case Oracle do some mess in MySQL at least I have its original version like others do, And I’m ready to do a fork of it in case a worst scenario begins. But off course I’m prepared to support community that will pledge to fork MySQL freely for community.<br />
<br/><br />
MySql is develop from C,C++ and available for download. Individual, community and business may fork it depends on their will, it will takes time to study the source code but I know with everybody’s help we can still make MySQL a live and free available in the future.<br />
<br/><br />
For those who would like to have a copy of MySQL you can still found it here.<br/><br />
<a href="http://mirror.provenscaling.com/mysql/enterprise/source/5.0/">http://mirror.provenscaling.com/mysql/enterprise/source/5.0/</a></p>
<p>Guide for MySQL Source Code<br />
<a href="http://forge.mysql.com/wiki/MySQL_Internals_Guided_Tour">http://forge.mysql.com/wiki/MySQL_Internals_Guided_Tour</a></p>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2009/12/15/i-am-using-mysql-help-save-it/" title="I am using MySQL, Help Save It!">I am using MySQL, Help Save It!</a></li><li><a href="http://arisroyo.com/2011/05/06/install-and-configure-lamp-linux-apache-mysql-php/" title="Install And Configure LAMP [Linux, Apache, MySql &#038; PHP]">Install And Configure LAMP [Linux, Apache, MySql &#038; PHP]</a></li><li><a href="http://arisroyo.com/2011/04/30/sharing-simple-php-web-application-project/" title="Sharing Simple PHP Web Application Project ">Sharing Simple PHP Web Application Project </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2010/03/17/i-save-mysql-for-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am using MySQL, Help Save It!</title>
		<link>http://arisroyo.com/2009/12/15/i-am-using-mysql-help-save-it/</link>
		<comments>http://arisroyo.com/2009/12/15/i-am-using-mysql-help-save-it/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:20:16 +0000</pubDate>
		<dc:creator>Aris Royo</dc:creator>
				<category><![CDATA[World]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.arisroyo.com/?p=72</guid>
		<description><![CDATA[I personally don&#8217;t trust that Oracle will take good care of MySQL they going to kill it little by little to offer their own database. MySQL give&#8217;s us freedom and opportunity to develop, share and analyze not just data but information that valuable beyond in our understanding and use, Its a database that help us be come [...]]]></description>
			<content:encoded><![CDATA[<p>I personally don&#8217;t trust that Oracle will take good care of MySQL they going to kill it little by little to offer their own database.</p>
<p>MySQL give&#8217;s us freedom and opportunity to develop, share and analyze not just data but information that valuable beyond in our understanding and use, Its a database that help us be come competitive and freedom that help us informed.</p>
<p>Now that Oracle is trying buy Sun who owned MySQL, It&#8217;s now the time to uphold and fight for our rights and freedom to use MySQL.</p>
<blockquote><p>Oracle is trying to buy Sun, and since Sun bought MySQL last year, Oracle would then own MySQL. With your support, there is a good chance that the EC (from which Oracle needs approval) could prevent this from happening or demand Oracle to change the terms for MySQL or give other guarantees to the users. Without your support, it might not. The EC is our last big hope now because the US government approved the deal while Europe is still worried about the effects.</p>
<p>-<a href="http://monty-says.blogspot.com/2009/12/help-saving-mysql.html">MONTY SAYS</a></p></blockquote>
<p>To Get More Information Please Read! And Act Now!</p>
<p><a href="http://monty-says.blogspot.com/2009/12/help-saving-mysql.html">http://monty-says.blogspot.com/2009/12/help-saving-mysql.html</a></p>
<h2  class="related_post_title">Related Topic</h2><ul class="related_post"><li><a href="http://arisroyo.com/2010/03/17/i-save-mysql-for-the-future/" title="I Save MySql For The Future.">I Save MySql For The Future.</a></li><li><a href="http://arisroyo.com/2011/05/06/install-and-configure-lamp-linux-apache-mysql-php/" title="Install And Configure LAMP [Linux, Apache, MySql &#038; PHP]">Install And Configure LAMP [Linux, Apache, MySql &#038; PHP]</a></li><li><a href="http://arisroyo.com/2011/04/30/sharing-simple-php-web-application-project/" title="Sharing Simple PHP Web Application Project ">Sharing Simple PHP Web Application Project </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://arisroyo.com/2009/12/15/i-am-using-mysql-help-save-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

