<?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>OwnCloud 7 Archives - TecnoGuide</title>
	<atom:link href="https://tecnoguide.info/tag/owncloud-7/feed/" rel="self" type="application/rss+xml" />
	<link>https://tecnoguide.info/tag/owncloud-7/</link>
	<description></description>
	<lastBuildDate>Wed, 22 Apr 2015 16:06:52 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.4</generator>
	<item>
		<title>Come creare un cloud server con Centos 7 e OwnCloud 7</title>
		<link>https://tecnoguide.info/come-creare-un-cloud-server-con-centos-7-e-owncloud-7/</link>
					<comments>https://tecnoguide.info/come-creare-un-cloud-server-con-centos-7-e-owncloud-7/#respond</comments>
		
		<dc:creator><![CDATA[D'Orazi Dario]]></dc:creator>
		<pubDate>Wed, 22 Apr 2015 16:06:52 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[centos 7]]></category>
		<category><![CDATA[OwnCloud 7]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">http://tecnoguide.info/?p=3381</guid>

					<description><![CDATA[<p>&#160; Grazie a dei semplici passaggi è possibile creare un vero e proprio cloud server con Centos 7 e OwnCloud 7 dove archiviare tutti i vostri dati. Ecco come fare. Installare Centos 7 e lanciare il seguente comando: yum -y update Alla fine lanciare: yum install httpd php php-mysql mariadb-server mariadb sqlite php-dom php-mbstring php-gd php-pdo [&#8230;]</p>
<p>The post <a href="https://tecnoguide.info/come-creare-un-cloud-server-con-centos-7-e-owncloud-7/">Come creare un cloud server con Centos 7 e OwnCloud 7</a> appeared first on <a href="https://tecnoguide.info">TecnoGuide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://tecnoguide.info/wp-content/uploads/2015/04/Come-creare-un-cloud-server-con-Centos-7-e-OwnCloud-7.jpg"><img fetchpriority="high" decoding="async" class=" size-large wp-image-3382 aligncenter" src="http://tecnoguide.info/wp-content/uploads/2015/04/Come-creare-un-cloud-server-con-Centos-7-e-OwnCloud-7-1024x751.jpg" alt="Cloud computing concept with copy space" width="620" height="455" srcset="https://tecnoguide.info/wp-content/uploads/2015/04/Come-creare-un-cloud-server-con-Centos-7-e-OwnCloud-7-1024x751.jpg 1024w, https://tecnoguide.info/wp-content/uploads/2015/04/Come-creare-un-cloud-server-con-Centos-7-e-OwnCloud-7-300x220.jpg 300w, https://tecnoguide.info/wp-content/uploads/2015/04/Come-creare-un-cloud-server-con-Centos-7-e-OwnCloud-7.jpg 1618w" sizes="(max-width: 620px) 100vw, 620px" /></a></p>
<p>&nbsp;</p>
<p>Grazie a dei semplici passaggi è possibile creare un vero e proprio cloud server con Centos 7 e OwnCloud 7 dove archiviare tutti i vostri dati. Ecco come fare.</p>
<p><span id="more-3381"></span></p>
<p><strong>Installare Centos 7 e lanciare il seguente comando:</strong></p>
<pre class="wp-code-highlight prettyprint prettyprinted"><span class="pln">yum </span><span class="pun">-</span><span class="pln">y update</span></pre>
<p><strong>Alla fine lanciare:</strong></p>
<pre class="dos">yum install httpd php php-mysql mariadb-server mariadb sqlite php-dom php-mbstring php-gd php-pdo wget vim</pre>
<p><strong>Installati tutti i componenti lanciare:</strong></p>
<pre class="dos">setsebool -P httpd_unified 1</pre>
<p><strong>Abilitate il firewall:</strong></p>
<pre class="dos">firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload</pre>
<p><strong>Avviate Apache:</strong></p>
<pre class="dos">systemctl start httpd.service</pre>
<p><strong>Avviate MariaDB:</strong></p>
<pre class="dos">systemctl start mariadb.service</pre>
<p><strong>Abilitate l&#8217;auto-startup:</strong></p>
<pre class="dos">systemctl enable httpd.service
systemctl enable mariadb.service</pre>
<h2>Installare ownCloud</h2>
<p><strong>Lanciare il comando:</strong></p>
<pre class="dos">wget https://download.owncloud.org/community/owncloud-7.0.0.tar.bz2</pre>
<p><strong>Estraete il pacchetto tramite:</strong></p>
<pre class="dos">tar -jxvf owncloud-7.0.0.tar.bz2 -C /var/www/html/</pre>
<p><strong>Date i permessi:</strong></p>
<pre class="dos">chown -R apache.apache /var/www/html/owncloud/</pre>
<h4><strong>DataBase configuration</strong></h4>
<p><strong>configurate il database:</strong></p>
<pre class="wp-code-highlight prettyprint prettyprinted"><span class="pln">mysql_secure_installation</span><span class="pun">;</span></pre>
<p><strong>Date l&#8217;ok Y</strong>.</p>
<pre class="wp-code-highlight prettyprint prettyprinted"><span class="typ">Set</span><span class="pln"> root password</span><span class="pun">?</span><span class="pun">[</span><span class="pln">Y</span><span class="pun">/</span><span class="pln">n</span><span class="pun">]</span><span class="typ">New</span><span class="pln"> password</span><span class="pun">:</span><span class="pln"> databaserootpassword
</span><span class="typ">Re</span><span class="pun">-</span><span class="pln">enter </span><span class="kwd">new</span><span class="pln"> password</span><span class="pun">:</span><span class="pln"> databaserootpassword
</span><span class="typ">Remove</span><span class="pln"> anonymous users</span><span class="pun">?</span><span class="pun">[</span><span class="pln">Y</span><span class="pun">/</span><span class="pln">n</span><span class="pun">]Y
</span><span class="typ">Disallow</span><span class="pln"> root login remotely</span><span class="pun">?</span><span class="pun">[</span><span class="pln">Y</span><span class="pun">/</span><span class="pln">n</span><span class="pun">]Y
</span><span class="typ">Remove</span><span class="pln"> test database </span><span class="kwd">and</span><span class="pln"> access to it</span><span class="pun">?</span><span class="pun">[</span><span class="pln">Y</span><span class="pun">/</span><span class="pln">n</span><span class="pun">]Y
</span><span class="typ">Reload</span><span class="pln"> privilege tables now</span><span class="pun">?</span><span class="pun">[</span><span class="pln">Y</span><span class="pun">/</span><span class="pln">n</span><span class="pun">]</span></pre>
<p><strong>Create il database e l&#8217;user ownCloud:</strong></p>
<p><strong>lanciate il comando:</strong></p>
<pre class="wp-code-highlight prettyprint prettyprinted"><span class="pln">mysql </span><span class="pun">-</span><span class="pln">u root </span><span class="pun">-p</span></pre>
<p><strong>e poi i seguenti comandi:</strong></p>
<pre class="wp-code-highlight prettyprint prettyprinted"><span class="pln">mysql&gt; create database owncloud</span><span class="pun">;</span><span class="pln">
mysql&gt; create user </span><span class="str">'owncloud'</span><span class="pun">@</span><span class="str">'localhost'</span><span class="pln"> identified </span><span class="kwd">by</span><span class="str">'somedatabasepassword'</span><span class="pun">;</span><span class="pln"> 
mysql&gt; grant all on owncloud</span><span class="pun">.*</span><span class="pln"> to </span><span class="str">'owncloud'</span><span class="pun">@</span><span class="str">'localhost'</span><span class="pun">;</span><span class="pln">
mysql&gt; flush privileges</span><span class="pun">;</span><span class="pln">
mysql&gt; quit;</span></pre>
<h4>Configurate il server Apache:</h4>
<p><strong>Lanciate il comando:</strong></p>
<pre class="dos">vim /etc/httpd/conf.d/owncloud.conf</pre>
<p><strong>Aggiungete le seguenti righe e salvate:</strong></p>
<pre class="command">&lt;IfModule mod_alias.c&gt;
Alias /owncloud /var/www/html/owncloud
&lt;/IfModule&gt;
&lt;Directory “/var/www/html/owncloud”&gt;
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
&lt;/Directory&gt;</pre>
<p><strong>Riavviate tutti i servizi:</strong></p>
<pre class="dos">systemctl start httpd.service
systemctl start mariadb.service</pre>
<h4>Configurate OwnCloud</h4>
<p><strong>http://your_ip_address/owncloud o</strong> <strong>http://your_Domain.com/owncloud</strong></p>
<p>The post <a href="https://tecnoguide.info/come-creare-un-cloud-server-con-centos-7-e-owncloud-7/">Come creare un cloud server con Centos 7 e OwnCloud 7</a> appeared first on <a href="https://tecnoguide.info">TecnoGuide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://tecnoguide.info/come-creare-un-cloud-server-con-centos-7-e-owncloud-7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
