<?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>cloud computing Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/cloud-computing/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 22 Sep 2019 21:41:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install Nextcloud on CentOS 8 /RHEL 8 / Oracle Linux 8</title>
		<link>https://www.osradar.com/install-nextcloud-centos-8-rhel-8-oracle-linux-8/</link>
					<comments>https://www.osradar.com/install-nextcloud-centos-8-rhel-8-oracle-linux-8/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 18 Aug 2019 23:32:17 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Centos 8]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nextcloud]]></category>
		<category><![CDATA[oracle linux 8]]></category>
		<category><![CDATA[RHEL 8]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13014</guid>

					<description><![CDATA[<p>Nextcloud is a very useful application that allows us to create a private cloud. Thanks to it, any company can create a server dedicated to its data. So you will have absolute control of them. This is important because privacy and file security are currently highly valued. But it is also quite useful if we [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nextcloud-centos-8-rhel-8-oracle-linux-8/">Install Nextcloud on CentOS 8 /RHEL 8 / Oracle Linux 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://nextcloud.com/">Nextcloud</a> is a very useful application that allows us to create a private cloud. Thanks to it, any company can create a server dedicated to its data. So you will have absolute control of them. This is important because privacy and file security are currently highly valued. But it is also quite useful if we have a personal server and we want to have our data backed up without having to entrust our data to third parties. Anyway, in this post, you will learn to install Nextcloud on CentOS 8 / RHEL 8.</p>
<h2>Install Nextcloud on CentOS 8 / RHEL 8 / Oracle Linux 8</h2>
<p>Nextcloud is a web application built with PHP. Then we will have to configure a web server for it. So we&#8217;ll install <a href="https://www.osaradar.com/tag/nginx/">Nginx</a> + <a href="https://www.osradar.com/tag/php/">PHP</a> + <a href="https://www.osradar.com/tag/mariadb/">MariaDB</a>. But we will also create a Server block for it.</p>
<p>So let&#8217;s go for it.</p>
<h3>1) Install Nginx and PHP</h3>
<p>So, the first step is to install Nginx and PHP. Let&#8217;s start with Nginx. Open a terminal and run the following:</p>
<pre>:~$ su
:~# dnf install nginx</pre>
<figure id="attachment_13051" aria-describedby="caption-attachment-13051" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13051" src="https://www.osradar.com/wp-content/uploads/2019/08/1-10.jpeg" alt="1.- Install Nginx on CentOS 8 / RHEL 8 / Oracle Linux 8" width="1366" height="708" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-10.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/1-10-300x155.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-10-768x398.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/1-10-1024x531.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/1-10-696x361.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/1-10-1068x554.jpeg 1068w, https://www.osradar.com/wp-content/uploads/2019/08/1-10-810x420.jpeg 810w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13051" class="wp-caption-text">1.- Install Nginx on CentOS 8 / RHEL 8 / Oracle Linux 8</figcaption></figure>
<p>Then, start and enable the service. Next, add a firewall rule to allow access to Nginx.</p>
<pre>:~# systemctl start nginx
:~# systemctl enable nginx
:~# firewall-cmd --permanent --add-service=http
success
:~# firewall-cmd --permanent --add-port=9000/tcp
:~# firewall-cmd --reload
success</pre>
<p>Now, you can open the web browser and go to <code>http://your-server</code>. You will see something like this:</p>
<figure id="attachment_13052" aria-describedby="caption-attachment-13052" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13052" src="https://www.osradar.com/wp-content/uploads/2019/08/2-1.png" alt="2.- Nginx is working" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/2-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-1-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/2-1-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/2-1-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/2-1-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/2-1-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13052" class="wp-caption-text">2.- Nginx is working</figcaption></figure>
<p>Now, you need to install PHP. So, run the following command:</p>
<pre>:~# dnf install php php-mysqlnd php-intl php-curl php-json php-gd php-xml php-mbstring php-zip php-fpm php-cli</pre>
<figure id="attachment_13053" aria-describedby="caption-attachment-13053" style="width: 1361px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13053" src="https://www.osradar.com/wp-content/uploads/2019/08/3-10.jpeg" alt="3.- Install PHP on CentOS 8 / RHEL 8/ Oracle Linux 8" width="1361" height="620" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-10.jpeg 1361w, https://www.osradar.com/wp-content/uploads/2019/08/3-10-300x137.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-10-768x350.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/3-10-1024x466.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/3-10-696x317.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/3-10-1068x487.jpeg 1068w, https://www.osradar.com/wp-content/uploads/2019/08/3-10-922x420.jpeg 922w" sizes="(max-width: 1361px) 100vw, 1361px" /><figcaption id="caption-attachment-13053" class="wp-caption-text">3.- Install PHP on CentOS 8 / RHEL 8/ Oracle Linux 8</figcaption></figure>
<p>Now, on the file <code>/etc/php.ini</code> change the following value:</p>
<pre>:~# nano /etc/php.ini
cgi.fix_pathinfo=0</pre>
<p>Then, save the changes and close the file. On the file <code>/etc/php-fpm.d/www.conf</code> changes these values:</p>
<pre>:~# nano /etc/php-fpm.d/www.conf
user = nginx
group = nginx 
pm.min_spare_servers = 5	 	 
pm.max_spare_servers = 35
listen = 127.0.0.1:9000</pre>
<p>Again, save the changes and close the file. After that, start the php-fpm service and restart the Nginx service by running the following commands:</p>
<pre>:~# systemctl start php-fpm
:~# systemctl enable php-fpm
:~# systemctl restart nginx</pre>
<p>So, Nginx and PHP are working fine.</p>
<h3>2) Install and configure MariaDB</h3>
<p>Now it is necessary to install MariaDB because Nextcloud requires a database manager. To do this, run the following command:</p>
<pre>:~# dnf install mariadb-server</pre>
<figure id="attachment_13054" aria-describedby="caption-attachment-13054" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13054" src="https://www.osradar.com/wp-content/uploads/2019/08/4-8.jpeg" alt="4.- Install MariaDB on CentOS 8 / RHEL 8 / Oracle Linux 8" width="1366" height="678" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4-8.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-300x149.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-768x381.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-1024x508.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-324x160.jpeg 324w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-696x345.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-1068x530.jpeg 1068w, https://www.osradar.com/wp-content/uploads/2019/08/4-8-846x420.jpeg 846w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13054" class="wp-caption-text">4.- Install MariaDB on CentOS 8 / RHEL 8 / Oracle Linux 8</figcaption></figure>
<p>Then, start and enable the service.</p>
<pre>:~# systemctl enable mariadb
:~# systemctl start mariadb</pre>
<p>After that, you need to set a root password for MariaDB. You can do it by using the <code>mysql_secure_installation</code> script. Moreover, you can secure the installation.</p>
<pre>:~# mysql_secure_installation</pre>
<p>And answer the following question:</p>
<pre>Remove anonymous users? Y
Disallow root login remotely? Y
Remove test database and access to it? Y
Reload privilege tables now? Y</pre>
<figure id="attachment_13055" aria-describedby="caption-attachment-13055" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13055" src="https://www.osradar.com/wp-content/uploads/2019/08/5-3.jpeg" alt="5.- Secure the MariaDB installation" width="1366" height="707" srcset="https://www.osradar.com/wp-content/uploads/2019/08/5-3.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-300x155.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-768x397.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-1024x530.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-696x360.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-1068x553.jpeg 1068w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-811x420.jpeg 811w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13055" class="wp-caption-text">5.- Secure the MariaDB installation</figcaption></figure>
<p>Now, create a new user and database for Nextcloud. So, access to the MariaDB console. Next, run the following commands:</p>
<pre>:~# mysql -u root -p
&gt; CREATE DATABASE nextcloud;
&gt; GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextclouduser'@'localhost' IDENTIFIED BY 'nextcloudpss';
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>
<p>Now, you can install Nextcloud.</p>
<h3>3) Install MariaDB on CentOS 8 / RHEL 8 / Oracle Linux 8</h3>
<p>Now we can start the installation. Make sure to install <code>wget</code> and <code>unzip</code>. Then, use it to start the download.</p>
<pre>:~# cd /tmp/
:~# wget -c https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip</pre>
<figure id="attachment_13056" aria-describedby="caption-attachment-13056" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13056" src="https://www.osradar.com/wp-content/uploads/2019/08/6-1.jpeg" alt="6.- Download and install Nextcloud on CentOS / RHEL 8 / Oracle Linux 8" width="1366" height="285" srcset="https://www.osradar.com/wp-content/uploads/2019/08/6-1.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/6-1-300x63.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/6-1-768x160.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/6-1-1024x214.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/6-1-696x145.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/6-1-1068x223.jpeg 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13056" class="wp-caption-text">6.- Download and install Nextcloud on CentOS / RHEL 8 / Oracle Linux 8</figcaption></figure>
<p>Then, decompress the folder. Move it to the Nginx document root and set the right permissions.</p>
<pre>:~# unzip nextcloud-16.0.3.zip
:~# mv nextcloud /usr/share/nginx/html/
:~# chown -R nginx:nginx /usr/share/nginx/html/
:~# chmod 755 -R /usr/share/nginx/html/</pre>
<p>Now, we need to create a new Server Block for Nextcloud.</p>
<pre>:~# nano /etc/nginx/conf.d/nextcloud.local.conf</pre>
<p>And add the following:</p>
<pre>server {
   server_name nextcloud.local;
   root /usr/share/nginx/html/nextcloud;

   location / {
       index index.html index.htm index.php;
       rewrite ^ /index.php$request_uri;
   }
   
   location ~ \.php$ {
      include /etc/nginx/fastcgi_params;
      fastcgi_pass 127.0.0.1:9000;
      fastcgi_index index.php;
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
   }
}</pre>
<figure id="attachment_13057" aria-describedby="caption-attachment-13057" style="width: 857px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13057" src="https://www.osradar.com/wp-content/uploads/2019/08/7.jpeg" alt="7.- Creating a new server block for Nextcloud" width="857" height="304" srcset="https://www.osradar.com/wp-content/uploads/2019/08/7.jpeg 857w, https://www.osradar.com/wp-content/uploads/2019/08/7-300x106.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/7-768x272.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/7-696x247.jpeg 696w" sizes="(max-width: 857px) 100vw, 857px" /><figcaption id="caption-attachment-13057" class="wp-caption-text">7.- Creating a new server block for Nextcloud</figcaption></figure>
<p>Save the changes and close the file.</p>
<p>Finally, restart the Nginx and the PHP-fpm services.</p>
<pre>:~# systemctl restart nginx
:~# systemctl restart php-fpm</pre>
<h3>4) Install Nextcloud on CentOS 8 / RHEL 8 / Oracle Linux 8 (II)</h3>
<p>So, complete the installation using the web browser. And you will see this:</p>
<figure id="attachment_13058" aria-describedby="caption-attachment-13058" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13058" src="https://www.osradar.com/wp-content/uploads/2019/08/8-4.png" alt="8.- Install Nextcloud on CentOS 8 / RHEL 8 / Oracle Linux 8" width="1365" height="663" srcset="https://www.osradar.com/wp-content/uploads/2019/08/8-4.png 1365w, https://www.osradar.com/wp-content/uploads/2019/08/8-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/8-4-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/8-4-1024x497.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/8-4-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/8-4-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/8-4-865x420.png 865w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-13058" class="wp-caption-text">8.- Install Nextcloud on CentOS 8 / RHEL 8 / Oracle Linux 8</figcaption></figure>
<p>So, type your MariaDB credentials and start the installation.</p>
<figure id="attachment_13059" aria-describedby="caption-attachment-13059" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13059" src="https://www.osradar.com/wp-content/uploads/2019/08/9-2.png" alt="9.- Installing Nextcloud" width="1365" height="663" srcset="https://www.osradar.com/wp-content/uploads/2019/08/9-2.png 1365w, https://www.osradar.com/wp-content/uploads/2019/08/9-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/9-2-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/9-2-1024x497.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/9-2-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/9-2-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/9-2-865x420.png 865w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-13059" class="wp-caption-text">9.- Installing Nextcloud</figcaption></figure>
<p>When the installation is finished, you will see the following screen.</p>
<figure id="attachment_13060" aria-describedby="caption-attachment-13060" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13060" src="https://www.osradar.com/wp-content/uploads/2019/08/10-1.png" alt="10.- Nextcloud log in" width="1365" height="663" srcset="https://www.osradar.com/wp-content/uploads/2019/08/10-1.png 1365w, https://www.osradar.com/wp-content/uploads/2019/08/10-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/10-1-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/10-1-1024x497.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/10-1-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/10-1-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/10-1-865x420.png 865w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-13060" class="wp-caption-text">10.- Nextcloud log in</figcaption></figure>
<p>After that, you can start to use Nextcloud.</p>
<figure id="attachment_13061" aria-describedby="caption-attachment-13061" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13061" src="https://www.osradar.com/wp-content/uploads/2019/08/11-1.png" alt="11.- Nextcloud working" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/11-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/11-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/11-1-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/11-1-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/11-1-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/11-1-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/11-1-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13061" class="wp-caption-text">11.- Nextcloud working</figcaption></figure>
<p>So, that is it.</p>
<h2>Conclusion</h2>
<p>Nextcloud is one of those applications that are necessary for any company. Because it is possible to create a private cloud with all the features of the most popular services. Nextcloud even has clients for other platforms such as Android and iOS.</p>
<p>So, you can also read <a href="https://www.osradar.com/install-nextcloud-on-debian-10/">how to install Nextcloud on Debian 10?</a></p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nextcloud-centos-8-rhel-8-oracle-linux-8/">Install Nextcloud on CentOS 8 /RHEL 8 / Oracle Linux 8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-nextcloud-centos-8-rhel-8-oracle-linux-8/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Install Nextcloud on Debian 10</title>
		<link>https://www.osradar.com/install-nextcloud-on-debian-10/</link>
					<comments>https://www.osradar.com/install-nextcloud-on-debian-10/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 15 Aug 2019 23:07:17 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nextcloud]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12998</guid>

					<description><![CDATA[<p>Today, many companies do not rely on the most popular cloud hosting services. This is due to the sensitivity of the stored data as well as the security scandals of the data. For this reason, it is more and more common to find large or medium-sized companies that prefer to use software that allows the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nextcloud-on-debian-10/">Install Nextcloud on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Today, many companies do not rely on the most popular cloud hosting services. This is due to the sensitivity of the stored data as well as the security scandals of the data. For this reason, it is more and more common to find large or medium-sized companies that prefer to use software that allows the removal of a private cloud. Whether for an intranet or more common for Internet service. That is to say, the administration depends exclusively on the company. Of these programs, Nextcloud stands out. With this in mind, this post will help you install Nextcloud on Debian 10. This way you will be able to use a private cloud yourself.</p>
<h2>Nextcloud on Debian 10: a great solution for privates clouds</h2>
<p>There are many data storage services in clouds. Technological giants like Apple, Google and Microsoft have them. However, there are people or companies that want to have absolute control of their own data. Nextcloud is there for that.</p>
<p><a href="https://nextcloud.com/" rel="noopener">Nextcloud</a> is an open-source web application that allows us to create our own private cloud. It was created with the primary objective that it is the user who has absolute control of the files.</p>
<p>Many companies install Nextcloud on their servers to create their private clouds. This way they can rely on their own data management. It is even of great help in educational or personal projects.</p>
<p>Today, you will learn how to install it on Debian 10.</p>
<h2>Install Nextcloud on Debian 10</h2>
<h3>1) Install LAMP on Debian 10</h3>
<p>Nextcloud is a web application created in PHP. In addition to this, it uses a database manager to round off its operation. That is, the first requirement is to install a LAMP server on Debian 10.</p>
<p>For it, you will not have problems because we have created two tutorials for you.</p>
<p>Read <a href="https://www.osradar.com/how-to-install-debian-10-buster/" rel="noopener"><strong>How to install Debian 10 Buster?</strong></a></p>
<p>And,</p>
<p><a href="https://www.osradar.com/install-lamp-on-debian-10/" rel="noopener"><strong>How to install LAMP on Debian 10 Buster?</strong></a></p>
<p>Now, in the PHP section, you have to install the following modules.</p>
<pre>php7.3 libapache2-mod-php7.3 php7.3-mysql php7.3-intl php7.3-curl php7.3-json php7.3-gd php7.3-xml php7.3-mb php7.3-zip</pre>
<h3>2) Working with MariaDB</h3>
<p><a href="https://www.osaradar.com/tag/mariadb/" rel="noopener">MariaDB</a> is a relational database manager that uses the <a href="https://www.osradar.com/tag/sql/" rel="noopener">SQL</a> language. It is one of the most popular that there is and Nextcloud uses it to store data needed for the application.</p>
<p>As a good practice, it is recommended to create a new user dedicated to Nextcloud. Also, create the database you will use. To do this, go to the MariaDB console and type the following commands:</p>
<pre>:~$ sudo mysql -u root -p
&gt; CREATE DATABASE nextcloud;
&gt; GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextclouduser'@'localhost' IDENTIFIED BY 'nextcloudpss';
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>
<figure id="attachment_13015" aria-describedby="caption-attachment-13015" style="width: 1238px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13015" src="https://www.osradar.com/wp-content/uploads/2019/08/1-8.jpeg" alt="1.- Creating the new user and database for Nextcloud" width="1238" height="399" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-8.jpeg 1238w, https://www.osradar.com/wp-content/uploads/2019/08/1-8-300x97.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-8-768x248.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/1-8-1024x330.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/1-8-696x224.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/1-8-1068x344.jpeg 1068w" sizes="(max-width: 1238px) 100vw, 1238px" /><figcaption id="caption-attachment-13015" class="wp-caption-text">1.- Creating the new user and database for Nextcloud</figcaption></figure>
<h3>3) Download and install Nextcloud on Debian 10</h3>
<p>After meeting the prerequisites, we can start the download of Nextcloud and its subsequent installation. However, first, make sure you have installed <code>wget</code> and <code>unzip</code>.</p>
<pre>:~$ sudo apt install wget unzip</pre>
<p>Then, download Nextcloud:</p>
<pre>:~$ cd /tmp/
:~$ wget -c https://download.nextcloud.com/server/releases/nextcloud-16.0.3.zip</pre>
<figure id="attachment_13016" aria-describedby="caption-attachment-13016" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13016" src="https://www.osradar.com/wp-content/uploads/2019/08/2-8.jpeg" alt="2.- Download and install Nextcloud on Debian 10" width="1366" height="344" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-8.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/08/2-8-300x76.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-8-768x193.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/2-8-1024x258.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/2-8-696x175.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/2-8-1068x269.jpeg 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13016" class="wp-caption-text">2.- Download and install Nextcloud on Debian 10</figcaption></figure>
<p>Now, you can extract the file. Next, move it to <code>/var/www/html</code> and set the right permission to the folder.</p>
<pre>:~$ unzip nextcloud-16.0.3.zip
:~$ sudo mv nextcloud /var/www/html/
:~$ sudo chown -R www-data:www-data /var/www/html/
:~$ sudo chmod 755 -R /var/www/html/</pre>
<p>The next step is to create a new virtual host for Nextcloud. This will allow the use of some PHP modules as well as being able to invoke it from a DNS name.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/nextcloud.conf</pre>
<p>And add the following:</p>
<pre> &lt;VirtualHost *:80&gt;
     ServerAdmin admin@your_domain.com
      DocumentRoot /var/www/html/nextcloud
     ServerName your-domain.com

     &lt;Directory /var/www/html/nextcloud&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
     CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost&gt;</pre>
<figure id="attachment_13017" aria-describedby="caption-attachment-13017" style="width: 944px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13017" src="https://www.osradar.com/wp-content/uploads/2019/08/3-8.jpeg" alt="3.- Creating a new virtualhost for Nextcloud" width="944" height="285" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-8.jpeg 944w, https://www.osradar.com/wp-content/uploads/2019/08/3-8-300x91.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-8-768x232.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/3-8-696x210.jpeg 696w" sizes="(max-width: 944px) 100vw, 944px" /><figcaption id="caption-attachment-13017" class="wp-caption-text">3.- Creating a new virtual host for Nextcloud</figcaption></figure>
<p>Replace &#8220;your-domain&#8221; by yours. Save the changes and close the file.</p>
<p>To enable this new virtual host, run the following commands:</p>
<pre>:~$ sudo ln -s /etc/apache2/sites-available/nextcloud.conf /etc/apache2/sites-enabled/nextcloud.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<figure id="attachment_13018" aria-describedby="caption-attachment-13018" style="width: 879px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13018" src="https://www.osradar.com/wp-content/uploads/2019/08/4-6.jpeg" alt="4.- Enabling the new virtualhost" width="879" height="151" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4-6.jpeg 879w, https://www.osradar.com/wp-content/uploads/2019/08/4-6-300x52.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-6-768x132.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/4-6-696x120.jpeg 696w" sizes="(max-width: 879px) 100vw, 879px" /><figcaption id="caption-attachment-13018" class="wp-caption-text">4.- Enabling the new virtual host</figcaption></figure>
<p>Now, complete the installation.</p>
<h3>4) Install Nextcloud on Debian 10 (II)</h3>
<p>So, open your web browser and go to your server. You will see this</p>
<figure id="attachment_13019" aria-describedby="caption-attachment-13019" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13019" src="https://www.osradar.com/wp-content/uploads/2019/08/5-3.png" alt="5.- Nextcloud on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/5-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/5-3-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13019" class="wp-caption-text">5.- Nextcloud on Debian 10</figcaption></figure>
<p>On that screen, you can create the administrator account. If you scroll down, you can write the parameters of the database.</p>
<figure id="attachment_13020" aria-describedby="caption-attachment-13020" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13020" src="https://www.osradar.com/wp-content/uploads/2019/08/6-2.png" alt="6.- Installing Nextcloud using the web interface" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/6-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/6-2-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13020" class="wp-caption-text">6.- Installing Nextcloud using the web interface</figcaption></figure>
<p>Then, the installer will start the installation. After that, you will see the folllowing screens.</p>
<figure id="attachment_13021" aria-describedby="caption-attachment-13021" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13021" src="https://www.osradar.com/wp-content/uploads/2019/08/7-2.png" alt="7.- Nextcloud welcome screen" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/7-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/7-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/7-2-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/7-2-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/7-2-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/7-2-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/7-2-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13021" class="wp-caption-text">7.- Nextcloud welcome screen</figcaption></figure>
<figure id="attachment_13022" aria-describedby="caption-attachment-13022" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13022" src="https://www.osradar.com/wp-content/uploads/2019/08/8-2.png" alt="8.- Nextcloud working" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/8-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/8-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/8-2-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/8-2-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/8-2-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/8-2-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/8-2-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13022" class="wp-caption-text">8.- Nextcloud working</figcaption></figure>
<p>So, Nextcloud is running properly. Enjoy it.</p>
<h2>Conclusion</h2>
<p>Nextcloud is a very useful tool for small and medium businesses that want to create a private cloud quickly and securely. A secure operating system such as Debian 10 Buster is also required.</p>
<p>Please share this psot and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nextcloud-on-debian-10/">Install Nextcloud on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-nextcloud-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Install ODrive on Ubuntu 18.04</title>
		<link>https://www.osradar.com/install-odrive-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/install-odrive-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 14 Jul 2019 02:22:00 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[google drive]]></category>
		<category><![CDATA[googledrive]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12590</guid>

					<description><![CDATA[<p>Google Drive is one of the world&#8217;s most popular cloud services. Of course, it&#8217;s from the big G company, however, it has its own advantages such as its integration with Android. The problem is that the support given to Linux is practically non-existent. And that makes many users look for other alternatives such as Mega [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-odrive-on-ubuntu-18-04/">Install ODrive on Ubuntu 18.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google Drive is one of the world&#8217;s most popular cloud services. Of course, it&#8217;s from the big G company, however, it has its own advantages such as its integration with Android. The problem is that the support given to Linux is practically non-existent. And that makes many users look for other alternatives such as Mega or Dropbox. Despite this, the development community does not stop and tries every day to offer solutions for Ubuntu which is the most popular Linux distribution. That&#8217;s why, in this post, I will show you how to install ODrive on Ubuntu 18.04 and Linux Mint 19. So with ODrive, you will have an efficient and light Google Drive client.</p>
<h2>ODrive and Google Drive</h2>
<p>Although Google is sympathetic to many open source projects, it&#8217;s rare that there isn&#8217;t an official Google Drive client on Linux. Yes, as you read it, not even for <a href="https://www.osradar.com/tag/ubuntu/" rel="noopener noreferrer">Ubuntu</a> which is the most popular distribution out there.</p>
<p>That&#8217;s why <a href="https://liberodark.github.io/ODrive/" rel="noopener noreferrer">ODrive</a> was born, to give an unofficial answer to this situation. ODrive is an unofficial client of Google Drive, is very simple to use and has little limited options, but that meets its goal. The goal is simply to synchronize our Drive files on our computer. Just like that. It is open source, released with the <a href="https://www.gnu.org/licenses/gpl-3.0.html" rel="noopener noreferrer">GPL license</a>, so we can examine the source code of the application without any problem.</p>
<p>Additionally, the application is available for Windows and MacOS, so it becomes quite easy to test. In the case of Linux, there are installers in Flatpak, Snap, DEB, RPM and <a href="https://www.osradar.com/appimagehub-the-appimage-store/" rel="noopener noreferrer">AppImage</a> formats. That is to say, it is installed in almost any modern desktop system.</p>
<h2>Install ODrive on Ubuntu 18.04 &#8211; Linux Mint 19</h2>
<p>For Ubuntu 18.04 and Linux Mint 19, we have several ways to install ODrive. The first is using the .DEB package. So I think it&#8217;s more efficient because we&#8217;ll just have to download a lightweight package.</p>
<p>Open a terminal and run the following:</p>
<pre>:~$ wget -c https://github.com/liberodark/ODrive/releases/download/0.2.2/odrive_0.2.2_amd64.deb</pre>
<p>In this case, the last stable version of the project is 0.2.2. If you read this post at another time, check the version first.</p>
<p>Next, install it using gdebi. If you do not have gdebi installed, install it first.</p>
<pre>:~$ sudo apt install gdebi
:~$ sudo gdebi [file_path]</pre>
<p>image</p>
<p>After that launch it.</p>
<p>However, if you don&#8217;t want to install it and just want to download a &#8220;portable&#8221;, you can download it in APPIMAGE format. Give permission to run and double click on the file.</p>
<pre>:~$ wget -c https://github.com/liberodark/ODrive/releases/download/0.2.2/OpenDrive.0.2.2.AppImage
:~$ chmod +x [file_path]</pre>
<p>However, there are installers in a snap and Flatpak format.</p>
<h2>Using ODrive</h2>
<p>Once you have installed ODrive, run it. Either from the main menu or as portable APPIMAGE.</p>
<figure id="attachment_12594" aria-describedby="caption-attachment-12594" style="width: 662px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12594" src="https://www.osradar.com/wp-content/uploads/2019/07/1-3.png" alt="1.- Install ODrive on Ubuntu 18.04" width="662" height="298" srcset="https://www.osradar.com/wp-content/uploads/2019/07/1-3.png 662w, https://www.osradar.com/wp-content/uploads/2019/07/1-3-300x135.png 300w" sizes="(max-width: 662px) 100vw, 662px" /><figcaption id="caption-attachment-12594" class="wp-caption-text">1.- Install ODrive on Ubuntu 18.04</figcaption></figure>
<p>Next, set your credentials and choose the folder location. And that is it.</p>
<figure id="attachment_12595" aria-describedby="caption-attachment-12595" style="width: 838px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12595" src="https://www.osradar.com/wp-content/uploads/2019/07/2-3.png" alt="2.- Set up ODrive on Ubuntu 18.04" width="838" height="541" srcset="https://www.osradar.com/wp-content/uploads/2019/07/2-3.png 838w, https://www.osradar.com/wp-content/uploads/2019/07/2-3-300x194.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/2-3-768x496.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/2-3-696x449.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/2-3-651x420.png 651w" sizes="(max-width: 838px) 100vw, 838px" /><figcaption id="caption-attachment-12595" class="wp-caption-text">2.- Set up ODrive on Ubuntu 18.04</figcaption></figure>
<h2>Conclusion</h2>
<p>An official Google Drive customer is what should exist. However, thanks to the existing developer community, it is possible to count on Google&#8217;s cloud service on Linux. However, it is good that you know that it is not the only one, but that Mega, Dropbox can also be installed on Linux. On the other hand, you can create a private cloud with <a href="https://www.osradar.com/how-to-install-nextcloud-in-ubuntu-18-04/">Nextcloud on Ubuntu 18.04</a>.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-odrive-on-ubuntu-18-04/">Install ODrive on Ubuntu 18.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-odrive-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
