<?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 Archives - LinuxTuto</title>
	<atom:link href="https://www.linuxtuto.com/tag/nextcloud/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.linuxtuto.com/tag/nextcloud/</link>
	<description>Linux Sysadmin and DevOps blog</description>
	<lastBuildDate>Tue, 05 Sep 2023 15:01:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.linuxtuto.com/wp-content/uploads/2022/01/cropped-LT_faveicon-32x32.png</url>
	<title>NextCloud Archives - LinuxTuto</title>
	<link>https://www.linuxtuto.com/tag/nextcloud/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">201456972</site>	<item>
		<title>How to Install NextCloud on Debian 12</title>
		<link>https://www.linuxtuto.com/how-to-install-nextcloud-on-debian-12/</link>
					<comments>https://www.linuxtuto.com/how-to-install-nextcloud-on-debian-12/#comments</comments>
		
		<dc:creator><![CDATA[LinuxTuto]]></dc:creator>
		<pubDate>Tue, 05 Sep 2023 15:00:04 +0000</pubDate>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Let's Encrypt]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[NextCloud]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://www.linuxtuto.com/?p=1531</guid>

					<description><![CDATA[<p>Nextcloud is a versatile and community-driven project, making it a popular choice for individuals, businesses, and organizations looking for a secure and self-hosted cloud storage...</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-nextcloud-on-debian-12/">How to Install NextCloud on Debian 12</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Nextcloud is a versatile and community-driven project, making it a popular choice for individuals, businesses, and organizations looking for a secure and self-hosted cloud storage and collaboration solution.</p>
<p>It is similar in functionality to popular cloud storage services like Dropbox, Google Drive, and Microsoft OneDrive but gives users greater control over their data and privacy because it can be deployed on their own servers or a cloud infrastructure of their choice.</p>
<p>In this tutorial, we will show you how to install Nextcloud on Debian 12 OS.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 1: Update Operating System</span></h2>
<p>Update your <strong>Debian 12</strong> operating system to make sure all existing packages are up to date:</p>
<pre><code># apt update &amp;&amp; apt upgrade</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 2: Install Nginx webserver</span></h2>
<p>You can install Nginx via <strong>apt</strong> package manager by executing the following command.</p>
<pre><code># apt install nginx</code></pre>
<p>You can start the Nginx service and configure it to run on startup by entering the following commands:</p>
<pre><code># systemctl start nginx
# systemctl enable nginx</code></pre>
<p>Verify the status of the Nginx service using <strong>systemctl status</strong> command:</p>
<pre><code># systemctl status nginx</code></pre>
<p>Output:</p>
<pre><code>● nginx.service - A high performance web server and a reverse proxy server
     Loaded: loaded (/lib/systemd/system/nginx.service; enabled; preset: enabled)
     Active: active (running)
       Docs: man:nginx(8)
    Process: 1280 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
    Process: 1281 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
   Main PID: 1304 (nginx)
      Tasks: 2 (limit: 2273)
     Memory: 1.7M
        CPU: 23ms
     CGroup: /system.slice/nginx.service
             ├─1304 "nginx: master process /usr/sbin/nginx -g daemon on; master_process on;"
             └─1307 "nginx: worker process"</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 3: </span><span class="has-inline-color has-vivid-purple-color">Install PHP and PHP extensions for Nextcloud</span></h2>
<p>To install PHP and the necessary extensions, run the following command:</p>
<pre><code># apt install php php-cli php-fpm php-json php-common php-mysql php-zip php-gd php-intl php-curl php-xml php-mbstring php-bcmath php-gmp</code></pre>
<p>Once the installation is complete verify if PHP is installed:</p>
<pre><code># php -v</code></pre>
<pre><code>Output:
PHP 8.2.7 (cli) (built: Jun  9 2023 19:37:27) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.2.7, Copyright (c) Zend Technologies
    with Zend OPcache v8.2.7, Copyright (c), by Zend Technologies</code></pre>
<p>After installing all the packages, edit the php.ini file:</p>
<pre><code># nano /etc/php/8.2/fpm/php.ini</code></pre>
<p>Change the following settings per your requirements:</p>
<pre><code>max_execution_time = 300
memory_limit = 512M
post_max_size = 128M
upload_max_filesize = 128M</code></pre>
<p>To implement the changes, restart the <strong>php-fpm</strong> service:</p>
<pre><code># systemctl restart php8.2-fpm</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 4: Install MariaDB database server</span></h2>
<p>To install the <a href="https://www.linuxtuto.com/how-to-install-mariadb-10-7-on-debian-11/">MariaDB database server</a>, run the following command:</p>
<pre><code># apt install mariadb-server mariadb-client</code></pre>
<p>Verify the status of the <strong>MariaDB</strong> service using <strong>systemctl status</strong> command:</p>
<pre><code># systemctl status mariadb</code></pre>
<p>Output:</p>
<pre><code>● mariadb.service - MariaDB 10.11.3 database server
     Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; preset: enabled)
     Active: active (running)
       Docs: man:mariadbd(8)
             https://mariadb.com/kb/en/library/systemd/
   Main PID: 14433 (mariadbd)
     Status: "Taking your SQL requests now..."
      Tasks: 11 (limit: 2273)
     Memory: 163.8M
        CPU: 513ms
     CGroup: /system.slice/mariadb.service
             └─14433 /usr/sbin/mariadbd
</code></pre>
<p>Once the installation is complete, run the following command to secure your MariaDB server:</p>
<pre><code># mysql_secure_installation</code></pre>
<p>Configure it like this:</p>
<pre><code>- Set root password? [Y/n] <strong>Y</strong>
- Remove anonymous users? [Y/n] <strong>Y</strong>
- Disallow root login remotely? [Y/n] <strong>Y</strong>
- Remove test database and access to it? [Y/n] <strong>Y</strong>
- Reload privilege tables now? [Y/n] <strong>Y</strong></code></pre>
<p>Restart the database server for the changes to take effect.</p>
<pre><code># systemctl restart mariadb</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 5: Create a New Database for Nextcloud</span></h2>
<p>Once you have installed MariaDB, you&#8217;ll need to create a new database and user for Nextcloud to use.</p>
<p>To do this, log in to your MariaDB server using the following command:</p>
<pre><code># mysql -u root -p</code></pre>
<p>You will be prompted to enter your root password. Once you have entered your password, you will be taken to the MariaDB prompt.</p>
<p>Run the following commands to create a new database and user:</p>
<pre><code>MariaDB [(none)]&gt; CREATE DATABASE nextcloud;
MariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextcloud'@'localhost' IDENTIFIED BY 'Password';
MariaDB [(none)]&gt; FLUSH PRIVILEGES;
MariaDB [(none)]&gt; EXIT;</code></pre>
<p><strong><span style="color: #ff0000;">Note:</span></strong> Make sure to replace <code>'<strong>Password</strong>'</code> with a strong password of your choice.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 6: Download and Install Nextcloud</span></h2>
<p>You can download the latest version of Nextcloud from the <a href="https://download.nextcloud.com/">Nextcloud Official site</a>.</p>
<p>Use the following command to download the latest version of Nextcloud:</p>
<pre><code># wget  https://download.nextcloud.com/server/releases/latest.zip</code></pre>
<p>Extract file into the folder <strong>/var/www/</strong> with the following command:</p>
<pre><code># unzip latest.zip -d /var/www/</code></pre>
<p>Change ownership of the <strong>/var/www/nextcloud</strong> directory to <strong>www-data</strong>.</p>
<pre><code># chown -R www-data:www-data /var/www/nextcloud</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 7: Configure Nginx for Nextcloud</span></h2>
<p>Run the commands below to create a new VirtualHost file called <kbd>nextcloud</kbd> in the <strong>/etc/nginx/conf.d/</strong> directory.</p>
<pre><code># nano /etc/nginx/conf.d/nextcloud.conf</code></pre>
<p>Paste the content as shown below:</p>
<pre><code>server {
  listen 80;
  server_name your-domain.com www.your-domain.com;
  root /var/www/nextcloud;
  index index.php index.html;
  charset utf-8;
  location / {
    try_files $uri $uri/ /index.php?$args;
  }
  location ~ .php$ {
    fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
  }
}</code></pre>
<p>Remember to replace <strong><code>your-domain.com</code></strong> with the domain name of your server.</p>
<p>Save and exit the configuration file.</p>
<p>To implement the changes, restart Nginx webserver:</p>
<pre><code># systemctl restart nginx</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 8: Install free Let’s Encrypt SSL certificate</span></h2>
<p>First we need to install the Certbot client which is used to create <a href="https://www.linuxtuto.com/how-to-install-apache-with-lets-encrypt-on-ubuntu-22-04/">Let’s Encrypt certificates</a>:</p>
<pre><code># apt install certbot python3-certbot-nginx</code></pre>
<p>To get the SSL certificate using the Certbot, type the command given below:</p>
<pre><code># certbot --nginx -d your-domain.com -d www.your-domain.com</code></pre>
<p>If the SSL certificate is successfully obtained, certbot displays a message to show the configuration was successful:</p>
<pre><code>IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/your-domain.com/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/your-domain.com/privkey.pem
   Your cert will expire on 2023-12-03. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot
   again. To non-interactively renew *all* of your certificates, run
   "certbot renew"
 - Your account credentials have been saved in your Certbot
   configuration directory at /etc/letsencrypt. You should make a
   secure backup of this folder now. This configuration directory will
   also contain certificates and private keys obtained by Certbot so
   making regular backups of this folder is ideal.
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le</code></pre>
<p>Now, you have successfully installed SSL on your website.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 9: Access Nextcloud Web Interface</span></h2>
<p>Open your web browser and type the URL <strong><code>https://your-domain.com</code></strong>. You should see the Nextcloud installation page.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-large wp-image-1534" src="https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-900x454.webp" alt="Nextcloud Debian" width="900" height="454" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-900x454.webp 900w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-300x151.webp 300w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-768x387.webp 768w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-1536x774.webp 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-1222x616.webp 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-897x452.webp 897w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian-684x345.webp 684w, https://www.linuxtuto.com/wp-content/uploads/2023/09/nextcloud_debian.webp 1905w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>Click the <code>Install</code> button, you will see the Web interface of NextCloud.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Comments and Conclusion</span></h2>
<p>That’s it. You have successfully installed <code>NextCloud</code> on Debian 12 OS.</p>
<p>For additional help or useful information, we recommend you to check  <a href="https://docs.nextcloud.com/" target="_blank" rel="noopener">the official Nextcloud documentation.</a></p>
<p>If you have any questions please leave a comment below.</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-nextcloud-on-debian-12/">How to Install NextCloud on Debian 12</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.linuxtuto.com/how-to-install-nextcloud-on-debian-12/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1531</post-id>	</item>
		<item>
		<title>How to Install NextCloud on AlmaLinux 8</title>
		<link>https://www.linuxtuto.com/how-to-install-nextcloud-on-almalinux/</link>
					<comments>https://www.linuxtuto.com/how-to-install-nextcloud-on-almalinux/#respond</comments>
		
		<dc:creator><![CDATA[LinuxTuto]]></dc:creator>
		<pubDate>Wed, 16 Mar 2022 21:57:42 +0000</pubDate>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[AlmaLinux]]></category>
		<category><![CDATA[NextCloud]]></category>
		<guid isPermaLink="false">https://www.linuxtuto.com/?p=140</guid>

					<description><![CDATA[<p>NextCloud provides reliable self-hosted cloud services and comes off as a good substitute for platforms such as Box and DropBox. It runs on your own...</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-nextcloud-on-almalinux/">How to Install NextCloud on AlmaLinux 8</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://nextcloud.com/" target="_blank" rel="nofollow noopener noreferrer">NextCloud</a> provides reliable self-hosted cloud services and comes off as a good substitute for platforms such as Box and DropBox. It runs on your own server, protecting your data and giving you access from your desktop or mobile devices. You can synchronize everything between your devices and share files with others as well.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Update Operating System</span></h2>
<p>Update your <strong>AlmaLinux 8</strong> operating system to make sure all existing packages are up to date:</p>
<pre><code>$ sudo dnf update</code></pre>
<p>Also, install:</p>
<pre><code>$ sudo dnf install wget nano unzip</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Install Apache web server</span></h2>
<p>To install Apache web server, run the following command:</p>
<pre class="wp-block-preformatted"><code>$ sudo dnf install httpd</code></pre>
<p>Apache does not start automatically when it is installed, you need to start it:</p>
<pre class="wp-block-preformatted"><code>$ sudo systemctl start httpd</code></pre>
<p>Then enable it to start on boot time.</p>
<pre><code>$ sudo systemctl enable httpd</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Install PHP 8.1 and required PHP modules</span></h2>
<p>Currently, PHP 8.1 is not featured in AlmaLinux’s AppStream. However, you can install PHP from (Remi) repository, a free-to-use third-party repository that deploys the latest PHP 8.0 builds.</p>
<p>To install EPEL, use the following <strong>(dnf)</strong> terminal command:</p>
<pre><code>$ sudo dnf install epel-release</code></pre>
<p>Now that you have added the EPEL repository, enable<strong> (Remi repository) </strong>with the following command:</p>
<pre><code>$ sudo dnf install dnf-utils http://rpms.remirepo.net/enterprise/remi-release-8.rpm</code></pre>
<p>Use the <strong>(dnf)</strong> command to update your repository list:</p>
<pre><code>$ sudo dnf update</code></pre>
<p>Next, enable PHP 8.1 with the following command:</p>
<pre><code>$ sudo dnf module enable php:remi-8.1</code></pre>
<p>Now that you have added the Remi PHP repository and enabled PHP 8.1 to be the default version on your system, you can install PHP 8.1 with the following command:</p>
<pre><code>$ sudo dnf install php</code></pre>
<p>For NextCloud to seamlessly work some additional PHP modules are required, install them with the following command:</p>
<pre><code>$ dnf install php-mysql php-fpm php-gd php-zip php-intl php-bcmath php-gmp</code></pre>
<p>Increase PHP Memory limit:</p>
<pre><code>$ sudo nano /etc/php.ini</code></pre>
<p>Find <strong>memory_limit</strong> and set the value to <strong>512M</strong></p>
<pre><code>memory_limit = 512M</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Install MariaDB and create a database</span></h2>
<p>MariaDB 10.7 is the latest release version for this relational database system. To be able to <a href="https://www.linuxtuto.com/how-to-install-mariadb-10-7-on-debian-11/">install MariaDB 10.7 on AlmaLinux 8</a> you need to add the <code>MariaDB YUM</code> repository:</p>
<pre><code>$ curl -LsS -O https://downloads.mariadb.com/MariaDB/mariadb_repo_setup
$ sudo bash mariadb_repo_setup --mariadb-server-version=<span class="has-inline-color has-vivid-purple-color">10.7</span></code></pre>
<p>Once the repository has been added to the system, installing MariaDB is an easy task that can be accomplished with the following command:</p>
<pre><code>$ sudo dnf install MariaDB-server MariaDB-client</code></pre>
<p>Once the installation is complete, verify the installed version of MariaDB.</p>
<pre><code>$ sudo systemctl status mariadb</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> mariadb.service - MariaDB 10.7.1 database server
Loaded: loaded (/usr/lib/systemd/system/mariadb.service; enabled; vendor preset: disabled)
Drop-In: /etc/systemd/system/mariadb.service.d
└─migrated-from-my.cnf-settings.conf
Active: <span style="color: #00ff00;">active (running)</span>
Docs: man:mariadbd(8)
https://mariadb.com/kb/en/library/systemd/
Process: 1450 ExecStartPost=/bin/sh -c systemctl unset-environment _WSREP_START_POSITION (code=exited, status=0/SUCCESS)
Process: 1000 ExecStartPre=/bin/sh -c [ ! -e /usr/bin/galera_recovery ] &amp;&amp; VAR= || VAR=`cd /usr/bin/..; /usr/bin/galera_recovery`; [ $? -eq 0 ] &amp;&amp; systemctl set-environment _WSREP_START_POSITION=$VAR || exit 1 (code=exited, status&gt;
Process: 987 ExecStartPre=/bin/sh -c systemctl unset-environment _WSREP_START_POSITION (code=exited, status=0/SUCCESS)
Main PID: 1017 (mariadbd)
Status: "Taking your SQL requests now..."
Tasks: 8 (limit: 11234)
Memory: 89.1M
CGroup: /system.slice/mariadb.service
└─1017 /usr/sbin/mariadbd</code></pre>
<p>Start the database server daemon, and also enable it to start automatically at the next boot with the following commands:</p>
<pre><code>$ sudo systemctl start mariadb
$ sudo systemctl enable mariadb</code></pre>
<p>Once the database server is installed, log into the MariaDB prompt:</p>
<pre><code>$ sudo  mysql -u root -p</code></pre>
<p>To create a database, database user, and grant all privileges to the database user run the following commands:</p>
<pre><code>MariaDB [(none)]&gt; CREATE DATABASE nextcloud_db;
MariaDB [(none)]&gt; CREATE USER 'nextcloud_user'@'localhost' IDENTIFIED BY 'Passw0rd';
MariaDB [(none)]&gt; GRANT ALL ON nextcloud_db.* TO 'nextcloud_user'@'localhost';
MariaDB [(none)]&gt; FLUSH PRIVILEGES;
MariaDB [(none)]&gt; EXIT</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color"> Installing NextCloud</span></h2>
<p>Use the following command to download NextCloud 23:</p>
<pre><code>$ sudo dnf -y install wget
$ sudo wget https://download.nextcloud.com/server/releases/nextcloud-23.0.2.zip</code></pre>
<p>Extract file into the folder <strong>/var/www/</strong> with the following command,</p>
<pre><code>$ sudo dnf -y install unzip 
$ sudo unzip nextcloud-23.0.2.zip -d /var/www/</code></pre>
<p>Create a directory to store the user data,</p>
<pre><code>$ sudo mkdir -p /var/www/nextcloud/data</code></pre>
<p>Enable permission for the Apache webserver user to access the NextCloud files,</p>
<pre><code>$ sudo chown -R apache:apache /var/www/nextcloud/</code></pre>
<p>Open port 80 on the webserver:</p>
<pre><code>$ sudo firewall-cmd --add-port=80/tcp --zone=public --permanent

$ sudo firewall-cmd --reload</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Configure Apache Web Server for NextCloud</span></h2>
<p>Navigate to <code>/etc/apache2/sites-available</code> directory and run the following command to create a configuration file for your NextCloud installation:</p>
<pre><code class="hljs shell"><span class="hljs-meta">$</span><span class="bash"> sudo nano /etc/httpd/conf.d/nextcloud.conf</span></code></pre>
<p>Add the following content:</p>
<pre><code>&lt;VirtualHost *:80&gt;

ServerName cloud.your-domain.com

ServerAdmin webmaster@your-domain.com
DocumentRoot /var/www/nextcloud

&lt;Directory /var/www/nextcloud/&gt;
Options +FollowSymlinks
AllowOverride All
Require all granted
&lt;/Directory&gt;

ErrorLog /var/log/httpd/cloud.your-domain.com_error.log
CustomLog /var/log/httpd/cloud.your-domain.com_access.log combined

&lt;/VirtualHost&gt;
</code></pre>
<p>Save the file and Exit.</p>
<p>Restart the Apache web server.</p>
<pre><code>$ sudo systemctl restart httpd</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Access your NextCloud Application</span></h2>
<p>Open your browser and complete the final steps at <code>http://cloud.your-domain.com</code></p>
<p><img decoding="async" class="size-large wp-image-304 aligncenter" src="https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-1024x578.jpg" alt="NextCloud on Almalinux" width="1024" height="578" srcset="https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-1024x578.jpg 1024w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-300x169.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-768x433.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-1536x867.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-1222x690.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-897x506.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux-684x386.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2022/03/NextCloud_Almalinux.jpg 1891w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>Click the <code>Install</code> button, you will see the Web interface of NextCloud.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Comments and Conclusion</span></h2>
<p>That’s it. You have successfully installed NextCloud on AlmaLinux 8.</p>
<p>If you have any questions please leave a comment below.</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-nextcloud-on-almalinux/">How to Install NextCloud on AlmaLinux 8</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.linuxtuto.com/how-to-install-nextcloud-on-almalinux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">140</post-id>	</item>
	</channel>
</rss>
