<?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>computing Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/computing/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 14 May 2019 12:43:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>How to install Nextcloud 16 on Debian 9?</title>
		<link>https://www.osradar.com/install-nextcloud-16-on-debian-9/</link>
					<comments>https://www.osradar.com/install-nextcloud-16-on-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 17 May 2019 00:22:11 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nextcloud]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Stretch]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11097</guid>

					<description><![CDATA[<p>One of the most popular solutions to create a private cloud is found in Nextcloud, but recently saw the light version 16. This version comes loaded with important news, so in this post, we will show you how to install Nextcloud 16 in Debian 9. Many companies are concerned about the security of their data, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nextcloud-16-on-debian-9/">How to install Nextcloud 16 on Debian 9?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>One of the most popular solutions to create a private cloud is found in Nextcloud, but recently saw the light version 16. This version comes loaded with important news, so in this post, we will show you how to install <a href="https://nextcloud.com/" target="_blank" rel="noopener noreferrer">Nextcloud</a> 16 in Debian 9.</p>
<p>Many companies are concerned about the security of their data, this is vital to maintain and safeguard the health of the company. Fortunately, solutions are available for it, as Nextcloud. With Nextcloud you can build your own professional and extensible cloud thanks to numerous plugins. It is one of the best-known applications within Linux for its extension, practicality, and ease of use.</p>
<p>On the other hand, <a href="https://www.osradar.com/debian-9-8-has-been-released/" target="_blank" rel="noopener noreferrer">Debian 9 is at its best</a> and is a highly recommended option to install a Nextcloud server.</p>
<p>So, let us start.</p>
<h2>1. Install Apache web server + PHP</h2>
<p>To install correctly, a web server is required. In this case we will choose Apache because it is the most common and simple to use.</p>
<p>So, open a terminal or connect to your VPS using SSH and type:</p>
<pre>:~$ su
:~# apt install apache2</pre>
<figure id="attachment_11099" aria-describedby="caption-attachment-11099" style="width: 1002px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11099" src="https://www.osradar.com/wp-content/uploads/2019/02/1-18.png" alt="1.- Install Apache" width="1002" height="349" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-18.png 1002w, https://www.osradar.com/wp-content/uploads/2019/02/1-18-300x104.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-18-768x267.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-18-696x242.png 696w" sizes="(max-width: 1002px) 100vw, 1002px" /><figcaption id="caption-attachment-11099" class="wp-caption-text">1.- Install Apache</figcaption></figure>
<p>By default, Debian starts and enables the service so it should already be running. On the other hand, it is also necessary to install PHP and some of its modules. Debian has older versions of PHP in its repositories so let&#8217;s upgrade to PHP 7.3. So, add the repository.</p>
<pre>:~# wget -q https://packages.sury.org/php/apt.gpg -O- | apt-key add -
:~# echo "deb https://packages.sury.org/php/ stretch main" | tee /etc/apt/sources.list.d/ondrej.list
:~# apt install apt-transport-https
:~# apt update</pre>
<figure id="attachment_11100" aria-describedby="caption-attachment-11100" style="width: 812px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11100" src="https://www.osradar.com/wp-content/uploads/2019/02/2-16.png" alt="2.- Add the PHP repository" width="812" height="290" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-16.png 812w, https://www.osradar.com/wp-content/uploads/2019/02/2-16-300x107.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-16-768x274.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-16-696x249.png 696w" sizes="(max-width: 812px) 100vw, 812px" /><figcaption id="caption-attachment-11100" class="wp-caption-text">2.- Add the PHP repository</figcaption></figure>
<p>Then, install PHP 7.3.</p>
<pre>:~# apt install libapache2-mod-php php7.3 php7.3-xml php7.3-curl php7.3-gd php7.3 php7.3-cgi php7.3-cli php7.3-zip php7.3-mysql php7.3-mbstring</pre>
<figure id="attachment_12099" aria-describedby="caption-attachment-12099" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-12099 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/333.png" alt="3.- Install PHP 7.3" width="1365" height="308" srcset="https://www.osradar.com/wp-content/uploads/2019/05/333.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/333-300x68.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/333-768x173.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/333-1024x231.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/333-696x157.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/333-1068x241.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12099" class="wp-caption-text">3.- Install PHP 7.3</figcaption></figure>
<p>Next, it is necessary to modify some of the PHP options. To do this edit the configuration file.</p>
<pre>:~# nano /etc/php/7.3/apache2/php.ini</pre>
<figure id="attachment_12100" aria-describedby="caption-attachment-12100" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-12100 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/44444.png" alt="4.- PHP configuration file" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/05/44444.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/44444-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/44444-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/44444-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/44444-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/44444-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/44444-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12100" class="wp-caption-text">4.- PHP configuration file</figcaption></figure>
<p>And make the following changes:</p>
<pre>memory_limit = 512M
upload_max_filesize = 200M
max_execution_time = 360
post_max_size = 200M</pre>
<p>Do not forget, also edit your timezome. You can use CTRL + W to find the options quickly.</p>
<p>Finally, restart Apache to enable the PHP support.</p>
<pre>:~# systemctl restart apache2</pre>
<p><em><strong>NOTE: If you are using a firewall, remember to enable ports 80 and 443 for Apache to work properly.</strong></em></p>
<h2>2. Install and configure MariaDB</h2>
<p>The next step to install Nextcloud 16 on Debian 9 is to install and configure MariaDB.</p>
<p>Nextclooud 16 needs a powerful database manager to store the generated data. It is compatible with several, but MariaDB is in the Debian repositories and is MySQL compatible. So we will install this one.</p>
<pre>:~# apt install mariadb-server</pre>
<figure id="attachment_11103" aria-describedby="caption-attachment-11103" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11103" src="https://www.osradar.com/wp-content/uploads/2019/02/5-14.png" alt="5.- Mariadb" width="1365" height="435" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-14.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/5-14-300x96.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-14-768x245.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-14-1024x326.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/5-14-696x222.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-14-1068x340.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/5-14-1318x420.png 1318w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11103" class="wp-caption-text">5.- Mariadb</figcaption></figure>
<p>Next, you need to set the root password and other things. So, run the following:</p>
<pre>:~# mysql_secure_installation</pre>
<figure id="attachment_11104" aria-describedby="caption-attachment-11104" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11104" src="https://www.osradar.com/wp-content/uploads/2019/02/6-13.png" alt="6.- mysql_secure_installation" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/6-13-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-13-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/6-13-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/6-13-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/6-13-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/6-13-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11104" class="wp-caption-text">6.- mysql_secure_installation</figcaption></figure>
<p>As you can see in the image, after defining the root password, you will be asked other questions about the configuration of MariaDB. For this post the answers are irrelevant, but we will answer like this: Y, N, Y, Y.</p>
<p>Then, create a new user and database for Nextcloud 16.</p>
<pre>:~# mysql -u root -p
CREATE DATABASE nextcloud;
GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextuser'@'localhost' IDENTIFIED BY 'nextpss';
FLUSH PRIVILEGES;
exit;</pre>
<figure id="attachment_11105" aria-describedby="caption-attachment-11105" style="width: 903px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-11105 size-full" src="https://www.osradar.com/wp-content/uploads/2019/02/7-13.png" alt="7.- Creating a new user for nextcloud 16" width="903" height="426" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-13.png 903w, https://www.osradar.com/wp-content/uploads/2019/02/7-13-300x142.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-13-768x362.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-13-696x328.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/7-13-890x420.png 890w" sizes="(max-width: 903px) 100vw, 903px" /><figcaption id="caption-attachment-11105" class="wp-caption-text">7.- Creating a new user for nextcloud 16</figcaption></figure>
<p>Now,we can install Nextcloud 16 on Debian 9.</p>
<h2>3. Install Nextcloud 16 on Debian 9</h2>
<p>Now, we can download it using wget and unzip to decompress it. Install these packages first.</p>
<pre>:~# apt install unzip</pre>
<p>Next, download it.</p>
<pre>:~# cd /opt/
:~# wget https://download.nextcloud.com/server/releases/nextcloud-16.0.0.zip</pre>
<figure id="attachment_12101" aria-describedby="caption-attachment-12101" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-12101 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/88888.png" alt="8.- Download and install Nextcloud 16" width="1365" height="303" srcset="https://www.osradar.com/wp-content/uploads/2019/05/88888.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/88888-300x67.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/88888-768x170.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/88888-1024x227.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/88888-696x154.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/88888-1068x237.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12101" class="wp-caption-text">8.- Download and install Nextcloud 16</figcaption></figure>
<p>After that, decompress it.</p>
<pre>:~# unzip nextcloud-16.0.0.zip</pre>
<figure id="attachment_11107" aria-describedby="caption-attachment-11107" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11107" src="https://www.osradar.com/wp-content/uploads/2019/02/9-10.png" alt="9.- Decompress the file" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/9-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/9-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/9-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/9-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/9-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/9-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/9-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11107" class="wp-caption-text">9.- Decompress the file</figcaption></figure>
<p>Then, move it to the <code>/var/www/html/</code> directory and changes the permissions.</p>
<pre>:~# mv nextcloud/ /var/www/html/
:~# chown -R www-data:www-data /var/www/html/nextcloud/
:~# chmod -R 755 /var/www/html/nextcloud/</pre>
<figure id="attachment_11108" aria-describedby="caption-attachment-11108" style="width: 826px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-11108 size-full" src="https://www.osradar.com/wp-content/uploads/2019/02/10-12.png" alt="10.- Installing nextcloud 16" width="826" height="143" srcset="https://www.osradar.com/wp-content/uploads/2019/02/10-12.png 826w, https://www.osradar.com/wp-content/uploads/2019/02/10-12-300x52.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/10-12-768x133.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/10-12-696x120.png 696w" sizes="(max-width: 826px) 100vw, 826px" /><figcaption id="caption-attachment-11108" class="wp-caption-text">10.- Installing nextcloud 16</figcaption></figure>
<p>Now, you can open your web browser and complete the installation using the Nextcloud 16 web interface. Go to <code>http://SERVER_IP/nextcloud</code> and set the required information. For example, the MariaDB credentials or creating the admin account.</p>
<figure id="attachment_11109" aria-describedby="caption-attachment-11109" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11109" src="https://www.osradar.com/wp-content/uploads/2019/02/11-8.png" alt="11.- Nextcloud web interface" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/11-8.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/11-8-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11109" class="wp-caption-text">11.- Nextcloud web interface</figcaption></figure>
<p>Next, you will see the dashboard.</p>
<figure id="attachment_11110" aria-describedby="caption-attachment-11110" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-11110 size-full" src="https://www.osradar.com/wp-content/uploads/2019/02/12-7.png" alt="12.- install Nextcloud 16 - The main screen" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/12-7.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/12-7-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11110" class="wp-caption-text">12.- install Nextcloud 16 &#8211; The main screen</figcaption></figure>
<p>And that is it. Now, you can enjoy Nextcloud 16 on Debian 9.</p>
<h2>Install Nextcloud 16. Conclusion</h2>
<p>Nextcloud 16 is a good alternative to set up your own private cloud at home or for your business. It is reliable, fast, secure and free, which makes it ideal for small businesses.</p>
<p>Please share this post with your friends.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nextcloud-16-on-debian-9/">How to install Nextcloud 16 on Debian 9?</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-16-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
