<?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>Nextcloud &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/nextcloud/feed/" rel="self" type="application/rss+xml" />
	<link>https://help.hostry.com</link>
	<description>Full information on how to use HOSTRY, provided by 24/7 community based support</description>
	<lastBuildDate>Wed, 30 Nov 2022 17:01:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.13</generator>

<image>
	<url>https://help.hostry.com/wp-content/uploads/cache/2021/01/cropped-apple-icon-180x180-1/836712163.png</url>
	<title>Nextcloud &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To install Nextcloud on Debian10</title>
		<link>https://help.hostry.com/knowledge-base/__trashed/</link>
					<comments>https://help.hostry.com/knowledge-base/__trashed/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 01 Jul 2020 08:29:18 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1810</guid>

					<description><![CDATA[Nextcloud is a software package for file hosting. It provides some features similar to Dropbox or Google Drive. Install and configure MariaDB Install MariaDB Run Database Security Wizard Answer the necessary questions as shown below. Next, replace the root password with more complex characters Log in to MySQL with the [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://nextcloud.com/">Nextcloud</a></em></strong> is a software package for file hosting. It provides some features similar to Dropbox or Google Drive.</p>



<h2 id="install-and-configure-mariadb" >Install and configure MariaDB</h2>



<p>Install MariaDB</p>



<pre class="wp-block-code"><code># apt install mariadb-server php-mysql -y</code></pre>



<p>Run Database Security Wizard</p>



<pre class="wp-block-code"><code># mysql_secure_installation</code></pre>



<p>Answer the necessary questions as shown below. Next, replace the root password with more complex characters</p>



<pre class="wp-block-code"><code>Enter current password for root (enter for none): Enter
Set root password? [Y/n]: Y
New password: example-password
Re-enter new password: example-password
Remove anonymous users? [Y/n]: Y
Disallow root login remotely? [Y/n]: Y
Remove test database and access to it? [Y/n]: Y
Reload privilege tables now? [Y/n]: Y</code></pre>



<p>Log in to MySQL with the password selected</p>



<pre class="wp-block-code"><code># mysql -u root -p</code></pre>



<p>Create a database for Nextcloud</p>



<pre class="wp-block-code"><code>MariaDB> CREATE DATABASE nextclouddb;</code></pre>



<p>Create a Nextcloud user and provide local access. Replace the password that is represented <strong>(example-password)</strong> with a strong password</p>



<pre class="wp-block-code"><code>MariaDB> GRANT ALL ON nextclouddb.* TO 'nextcloud_user'@'localhost' IDENTIFIED BY 'example-password';
MariaDB> FLUSH PRIVILEGES;
MariaDB> EXIT;</code></pre>



<h2 id="install-php" >Install PHP</h2>



<pre class="wp-block-code"><code># apt install php php-gd php-mbstring php-dom php-curl php-zip php-simplexml php-xml -y</code></pre>



<h2 id="install-apache" >Install Apache</h2>



<pre class="wp-block-code"><code># apt install apache2 libapache2-mod-php -y</code></pre>



<p>Launch Apache and enable it every time you boot</p>



<pre class="wp-block-code"><code># systemctl start apache2
# systemctl enable apache2</code></pre>



<h2 id="install-nextcloud" >Install Nextcloud</h2>



<p>You need to do this as follows: find on this page the URL to download the latest <strong>* .tar.bz2</strong> <em>Nextcloud distribution</em>. Download the <strong>* .tar.bz2</strong> file using wget. This guide uses <strong>version 18.0.4 </strong>as an example</p>



<pre class="wp-block-code"><code># wget https://download.nextcloud.com/server/releases/nextcloud-18.0.4.tar.bz2</code></pre>



<p>Unzip the distribution into the directory <strong>/var/www/html</strong></p>



<pre class="wp-block-code"><code># tar -xjf nextcloud-18.0.4.tar.bz2 -C /var/www/html</code></pre>



<p>Make Apache the <strong>owner</strong> of Nextcloud files.</p>



<pre class="wp-block-code"><code># chown -R www-data:www-data /var/www/html/nextcloud
# chmod -R 755 /var/www/html/nextcloud</code></pre>



<h2 id="nextcloud-configuration" >Nextcloud Configuration</h2>



<p>Go to the Nextcloud URL at the IP address of your server</p>



<pre class="wp-block-code"><code>http://192.0.2.123/nextcloud/</code></pre>



<p>Then enter the following configuration <strong><span style="text-decoration: underline;">information</span></strong>:</p>



<ul><li>Choose an admin username and secure password.</li><li>Leave&nbsp;<strong>Data folder</strong>&nbsp;at the default value.</li><li>For&nbsp;<strong>Database user</strong>, enter:&nbsp;<strong>nextcloud_user</strong></li><li>For&nbsp;<strong>Database password</strong>, enter the nextcloud_user password you chose in MariaDB.</li><li>For&nbsp;<strong>Database name</strong>, enter:&nbsp;<strong>nextclouddb</strong></li><li>Leave &#8220;localhost&#8221; as &#8220;localhost&#8221;.</li></ul>



<p>Click&nbsp;<strong>Finish</strong>.</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/__trashed/feed/</wfw:commentRss>
			<slash:comments>469</slash:comments>
		
		
			</item>
		<item>
		<title>How to install NextCloud on my Ubuntu 22.04</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-nextcloud-on-my-ubuntu-22-04/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-nextcloud-on-my-ubuntu-22-04/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 29 Sep 2022 10:45:58 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=5026</guid>

					<description><![CDATA[NextCloud &#8211; Nextcloud Hub &#8211; Hub integrates the four key Nextcloud products Files, Talk, Groupware and Office into a single platform, optimizing the flow of collaboration. Reduce risk, improve citizen communication and reduce operational expenses with the leading content collaboration platform. Contact us now to learn how we can help [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><a href="https://nextcloud.com/">NextCloud</a></strong> &#8211; Nextcloud Hub &#8211; Hub integrates the four key Nextcloud products Files, Talk, Groupware and Office into a single platform, optimizing the flow of collaboration. Reduce risk, improve citizen communication and reduce operational expenses with the leading content collaboration platform. Contact us now to learn how we can help you! It is also worth noting that this is a special application with which you will be able to manage open source files, which allows you to create, edit, host and share files without restrictions. </p>



<h2 id="initial-steps-for-installing-dependencies" >Initial steps for installing dependencies</h2>



<p>By default, the Snap daemon is enabled on most Ubuntu server distributions. In any case, install it with the following command.</p>



<pre class="wp-block-code"><code>apt install snapd</code></pre>



<p>Check the installed version of snap.</p>



<pre class="wp-block-code"><code>sudo snap version</code></pre>



<p>Next, make a output and you cah show it (For ubuntu 22.04)</p>



<pre class="wp-block-code"><code> snap    2.57.1
 snapd   2.57.1
 series  16
 ubuntu  22.04
 kernel  5.15.0-41-generic</code></pre>



<p> Then you can install tne NextCloud programm. Use this command with <strong>snap</strong></p>



<pre class="wp-block-code"><code>snap install nextcloud</code></pre>



<h2 id="configure-your-nextcloud" >Configure your NextCloud</h2>



<p>The first step in your successful configuration should be to configure UFW to allow HTTP network traffic on server port 80. Please use this command</p>



<pre class="wp-block-code"><code>ufw allow 80/tcp</code></pre>



<p>Next, you should allow access to https in order for everything to work fine. Use this command:</p>



<pre class="wp-block-code"><code>ufw allow 443/tcp</code></pre>



<p>After you have made the necessary changes, you should <strong>reload</strong> the firewall. Use command to reload:</p>



<pre class="wp-block-code"><code> ufw reload</code></pre>



<p>To activate the NextCloud database and configuration file values, visit your server&#8217;s IP address using a web browser.</p>



<pre class="wp-block-code"><code> http:&#47;&#47;Your_IP_Address</code></pre>



<p>Now it remains to enter a username and a strong password to create the first administrator account. Then open your most preferred text editor and edit the main <strong>NextCloud</strong> configuration file.</p>



<pre class="wp-block-code"><code>nano /var/snap/nextcloud/current/nextcloud/config/config.php</code></pre>



<p>Find the &#8220;trusted_domains&#8221; =&gt;` section and replace the server IP address with your domain name as shown below.</p>



<pre class="wp-block-code"><code> 'trusted_domains' =&gt;
    array (
       0 =&gt; 'nextcloud.Your_Domain_Name.com',
     ),</code></pre>



<p>Then save and close the file. Install the <strong><a href="https://hostry.com/solutions/ssl-for-free/">Let&#8217;s Encrypt SSL certificate</a></strong> to secure your NextCloud server with HTTPS by running the following command.</p>



<pre class="wp-block-code"><code>nextcloud.enable-https lets-encrypt</code></pre>



<p>You can find how to install your security certificate <a href="https://help.hostry.com/article-categories/ssl-guides/"><strong>here</strong></a> (based on your web server).</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-nextcloud-on-my-ubuntu-22-04/feed/</wfw:commentRss>
			<slash:comments>88</slash:comments>
		
		
			</item>
	</channel>
</rss>
