<?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>Wfiles&#039; Blog! &#187; linux</title>
	<atom:link href="http://blog.wfiles.it/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wfiles.it</link>
	<description>Gestire e Condividere Documenti non è Mai Stato così Semplice!</description>
	<lastBuildDate>Tue, 15 Dec 2009 16:05:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installazione di LAMP su Fedora</title>
		<link>http://blog.wfiles.it/2009/06/23/installazione-di-lamp-su-fedora/</link>
		<comments>http://blog.wfiles.it/2009/06/23/installazione-di-lamp-su-fedora/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 08:16:16 +0000</pubDate>
		<dc:creator>Filippo Miceli</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redhat]]></category>

		<guid isPermaLink="false">http://blog.wfiles.it/?p=28</guid>
		<description><![CDATA[
La seguente guida elenca tutte le operazioni da eseguire per installare un ambiente LAMP (Linux+Apache+Mysql+Php) su Fedora.

Installazione Apache, Mysql, Php con yum: eseguire con i privilegi di “root” il comando

yum install httpd mysql-server php php-mysql



Avvio dei Servizi
MySql

/etc/init.d/mysqld start

Apache

/etc/init.d/httpd start



]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-30" title="fedora" src="http://blog.wfiles.it/wp-content/uploads/2009/06/fedora1.jpg" alt="fedora" width="264" height="80" /></p>
<p>La seguente guida elenca tutte le operazioni da eseguire per installare un ambiente LAMP (Linux+Apache+Mysql+Php) su Fedora.</p>
<ol>
<li>Installazione Apache, Mysql, Php con yum: eseguire con i privilegi di “root” il comando

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> httpd mysql-server php php-mysql</pre></div></div>

</li>
<li>
Avvio dei Servizi</p>
<p><strong>MySql</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>mysqld start</pre></div></div>

<p><strong>Apache</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>httpd start</pre></div></div>

</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.wfiles.it/2009/06/23/installazione-di-lamp-su-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installazione di LAMP su Ubuntu</title>
		<link>http://blog.wfiles.it/2009/06/23/installazione-di-lamp-su-ubuntu/</link>
		<comments>http://blog.wfiles.it/2009/06/23/installazione-di-lamp-su-ubuntu/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 08:05:16 +0000</pubDate>
		<dc:creator>Filippo Miceli</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.wfiles.it/?p=22</guid>
		<description><![CDATA[
La seguente guida elenca tutte le operazioni da eseguire per installare un ambiente LAMP (Linux+Apache+Mysql+Php) su Ubuntu.

Installazione di Apache: eseguire      il seguente comando sul terminale

sudo apt-get install apache2


Installazione di Php: eseguire      il seguente comando sul terminale

sudo apt-get install php5 libapache2-mod-php5

riavviare Apache

sudo /etc/init.d/apache2 restart


Installazione di Mysql: [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-23" title="ubuntu" src="http://blog.wfiles.it/wp-content/uploads/2009/06/ubuntu.jpg" alt="ubuntu" width="281" height="89" /></p>
<p>La seguente guida elenca tutte le operazioni da eseguire per installare un ambiente LAMP (Linux+Apache+Mysql+Php) su Ubuntu.</p>
<ol>
<li>Installazione di Apache: eseguire      il seguente comando sul terminale

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> apache2</pre></div></div>

</li>
<li>Installazione di Php: eseguire      il seguente comando sul terminale

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> php5 libapache2-mod-php5</pre></div></div>

<p>riavviare Apache</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></div></div>

</li>
<li>Installazione di Mysql: eseguire      il seguente comando sul terminale

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> mysql-server</pre></div></div>

</li>
<li>Installazione di PhpMyAdmin: eseguire      il seguente comando sul terminale

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libapache2-mod-auth-mysql php5-mysql phpmyadmin</pre></div></div>

</li>
<li>Configurazione di PHP per MySql:      aprire il file php.ini

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksudo gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>php5<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>php.ini</pre></div></div>

<p>modificare la linea:</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;">;extension=mysql.so</pre></div></div>

<p>in</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;">extension=mysql.so</pre></div></div>

</li>
<li>Riavviare Apache per rendere      effettive le modifiche

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></div></div>

</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.wfiles.it/2009/06/23/installazione-di-lamp-su-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
