<?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>bojanpejic.com &#187; apache</title>
	<atom:link href="http://bojanpejic.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://bojanpejic.com</link>
	<description>Scrap Book About Web – Programming – Development – Places, and more 8-)</description>
	<lastBuildDate>Sun, 16 May 2010 14:37:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Installing LAMP on Kubuntu or Ubuntu</title>
		<link>http://bojanpejic.com/installing-lamp-on-kubuntu-or-ubuntu/</link>
		<comments>http://bojanpejic.com/installing-lamp-on-kubuntu-or-ubuntu/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 12:06:22 +0000</pubDate>
		<dc:creator>bojan</dc:creator>
				<category><![CDATA[Apps and Software]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://bojanpejic.com/?p=93</guid>
		<description><![CDATA[This post represents a small guide of how to setup your LAMP (Linux-Apache-MySQL-PHP) under Kubuntu (this works also for Ubuntu). Usually LAMP tutorials guide you to install one by one all the applications, that looks something like this: sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install mysql-server There is one more easy...]]></description>
			<content:encoded><![CDATA[<p>This post represents a small guide of how to setup your LAMP (Linux-Apache-MySQL-PHP) under Kubuntu (this works also for Ubuntu).</p>
<p>Usually LAMP tutorials guide you to install one by one all the applications, that looks something like this:</p>
<pre class="brush: plain;">
sudo apt-get install apache2
sudo apt-get install php5
sudo apt-get install mysql-server
</pre>
<p>There is one more easy solution, and the only difference is that it installs all + some other packages for LAMP.</p>
<pre class="brush: plain;">
sudo apt-get install lamp-server^
</pre>
<p>When installation of new packages finishes you have you own LAMP setup! Test it entering <em>http://localhost</em> in your browser it should say It works!</p>
<h4>Tip #1</h4>
<p>For adding PhpMyAdmin execute the following command in console:</p>
<pre class="brush: plain;">
sudo apt-get install phpmyadmin
</pre>
<p>It is possible when you type in your browser <em>http://localhost/phpmyadmin/</em> that phpmyadmin don&#8217;t runs. Then you have to create a link in your www directory:</p>
<pre class="brush: plain;">
sudo ln -s /usr/share/phpmyadmin /var/www/phpmyadmin
</pre>
<p>After doing this <em>http://localhost/phpmyadmin</em>/ should work now!</p>
<h4>Tip #2</h4>
<p>To have permissions to your www directory do following:</p>
<pre class="brush: plain;">
sudo chown username:username /var/www
</pre>
<h4>Tip #3</h4>
<p>Enable Apache mod_rewrite module and restart Apache for taking effects:</p>
<pre class="brush: plain;">
sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
</pre>
<p>You can enable or disable some other modules like this.</p>
<p>Now you have your LAMP up and the work can start :)</p>
]]></content:encoded>
			<wfw:commentRss>http://bojanpejic.com/installing-lamp-on-kubuntu-or-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
