<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Wed, 29 Apr 2026 05:40:09 +0200 -->
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Wiki Les geekeries de rungis]]></title>
		<atom:link href="https://geekrungis.fr/syndication/rss/wiki/1" rel="self" type="application/rss+xml"/>
		<link>https://geekrungis.fr</link>
		<description><![CDATA[Derniers articles de la catégorie Nextcloud]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>fr</language>
		<generator>PHPBoost</generator>
		
            <item>
                <title><![CDATA[Résoudre l'erreur 500 sur Nextcloud]]></title>
                <link>https://geekrungis.fr/wiki/resoudre-l-erreur-500-sur-nextcloud</link>
                <guid>https://geekrungis.fr/wiki/resoudre-l-erreur-500-sur-nextcloud</guid>
                <description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-introduction">Introduction</h2><br />

<br />
Suite à des problèmes avec ma VM Nextcloud installée sur proxmox, j'ai restauré un snapshot mais là, problème !<br />
Voici le message qui apparait sur mon navigateur après m'être connecté :<br />
<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
Internal Server Error
The server encountered an internal error and was unable to complete your request.
Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.
More details can be found in the server log.
&nbsp;</pre></pre></div></div><br />
<br />
Dans les logs de Nextcloud, je retrouve ceci :<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
Failed to open stream: No such file or directory... merged-template-prepend.js.deps
&nbsp;</pre></pre></div></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-causes">Causes</h2><br />

C'est un problème de cache. La base de données pointe vers des fichiers Javascript/CSS combinés qui n'existent plus sur le disque suite au retour en arrière.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-la-resolution-etape-par-etape">La résolution étape par étape</h2><br />

<br />
<ol class="formatter-ol">
    <li class="formatter-li"> Vider le cache des fichiers JS/CSS (dans le dossier où se trouvent vos fichiers, vous devez avoir un dossier appdata_ocxxxxxxx)<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
cd appdata_ocxxxx/
sudo rm -rf js/ css/
&nbsp;</pre></pre></div></div>
    </li><li class="formatter-li">Forcer le scan de Nextcloud<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
sudo -u www-data php occ files:scan-app-data
&nbsp;</pre></pre></div></div>
    </li><li class="formatter-li">Lancer la réparation automatique :<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
sudo -u www-data php occ maintenance:repair
&nbsp;</pre></pre></div></div>
    </li><li class="formatter-li">Redémarrer apache<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
sudo systemctl restart apache2
&nbsp;</pre></pre></div></div><br />
</li></ol><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-conclusion">Conclusion</h2><br />

En cas d'erreur 500 persistante après une restauration, ne paniquez pas sur la base de données : vérifiez d'abord le dossier <strong>appdata</strong>. C'est souvent lui qui contient des résidus de cache devenus invalides !]]></description>
                <pubDate>Sun, 19 Apr 2026 14:11:34 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Mise à jour d'ONLYOFFICE dans Nextcloud]]></title>
                <link>https://geekrungis.fr/wiki/mise-a-jour-d-onlyoffice-dans-nextcloud</link>
                <guid>https://geekrungis.fr/wiki/mise-a-jour-d-onlyoffice-dans-nextcloud</guid>
                <description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-introduction">Introduction</h2><br />

<br />
<span class="message-helper notice">Vous pouvez retrouver l'installation d'ONLYOFFICE dans un conteneur docker sur l'article suivant.</span><br />
<br />
Il y a quelques jours, je me suis trouvé face à un bug sur ONLYOFFICE. Après quelques recherches, j'ai compris que mon bug était corrigé lors d'une mise à jour d'ONLYOFFICE. En regardant sur l'interface de Nextcloud, dans le menu [Applications], ONLYOFFICE était à jour.<br />
Sauf que sur l'interface de Nextcloud, on peut voir la version du connecteur ONLYOFFICE, à bien différencier du serveur ONLYOFFICE (installé sur docker), c'est celui-là qu'il faut mettre à jour.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-extinction-d-onlyoffice">Extinction d'ONLYOFFICE</h2><br />

<br />
<span class="message-helper warning">Dans un premier temps, je vous recommande de faire une sauvegarde de votre serveur. Si comme moi, il est hébergé sur une VM, c'est simple.</span><br />
<br />
Tout d'abord, il faut éteindre ONLYOFFICE. Pour cela, taper la commande suivante pour connaitre l'ID du serveur ONLYOFFICE :<br />
<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> docker <span style="color: #c20cb9; font-weight: bold;">ps</span> <span style="color: #660033;">-a</span></pre></pre></div></div><br />
<br />
Vous obtiendrez l'ID du serveur qu'on notera [ID_SERVEUR].<br />
Tapez alors la commande suivante :<br />
<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> docker <span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>ID_SERVEUR<span style="color: #7a0874; font-weight: bold;">&#93;</span> documentserver-prepare4shutdown.sh</pre></pre></div></div><br />
<br />
<span class="message-helper notice">L&#8217;exécution du script peut prendre plusieurs minutes</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-mise-a-jour-d-onlyoffice">Mise à jour d'ONLYOFFICE</h2><br />

<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-stopper-le-container-docker">Stopper le container docker</h3><br />

<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> docker stop <span style="color: #7a0874; font-weight: bold;">&#91;</span>ID_SERVEUR<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></pre></div></div><br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-telecharger-la-derniere-version-d-onlyoffice">Télécharger la dernière version d'ONLYOFFICE</h3><br />

<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">docker pull onlyoffice<span style="color: #000000; font-weight: bold;">/</span>documentserver:latest</pre></pre></div></div><br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-executer-la-nouvelle-image-docker">Exécuter la nouvelle image docker</h3><br />

<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">docker run <span style="color: #660033;">-e</span> <span style="color: #007800;">JWT_ENABLED</span>=<span style="color: #c20cb9; font-weight: bold;">false</span> <span style="color: #660033;">-i</span> <span style="color: #660033;">-t</span> <span style="color: #660033;">-d</span> <span style="color: #660033;">-p</span> <span style="color: #000000;">8080</span>:<span style="color: #000000;">80</span> <span style="color: #660033;">--restart</span> always onlyoffice<span style="color: #000000; font-weight: bold;">/</span>documentserver</pre></pre></div></div><br />
<br />
<span class="message-helper warning">Il est important de se mettre dans le bon dossier, celui où vous avez installé le container. Il faut également adapter les ports en fonction de l'installation que vous avez faite</span><br />
<br />
<span class="message-helper notice">Depuis Onlyoffice 7, il est nécessaire de gérer le jeton de sécurité. Ici, je ne l'ai pas activé en ajoutant l'option -e JWT_ENABLED=false</span><br />
<br />
<span class="message-helper success">Connectez vous à Nextcloud et vérifier en ouvrant un document ou en en créant un nouveau la version d'ONLYOFFICE</span><br />
<br />
<img src="https://geekrungis.fr/upload/version_onlyoffice.png" alt="version_onlyoffice" title="version_onlyoffice" /><br />
<br />
<br />
<br />]]></description>
                <pubDate>Sun, 22 Oct 2023 19:21:41 +0200</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Le webdav sur Nextcloud]]></title>
                <link>https://geekrungis.fr/wiki/le-webdav-sur-nextcloud</link>
                <guid>https://geekrungis.fr/wiki/le-webdav-sur-nextcloud</guid>
                <description><![CDATA[Certains services que j'utilise nécessitent une connexion webdav pour fonctionner. J'en utilise notamment trois :<br />
<ul class="formatter-ul">
    <li class="formatter-li">Zotero est une application de gestion de bibliographie. On peut sauvegarder sa biblio sur les serveurs de Zotero mais on peut aussi sur son propre serveur au travers du protocole Webdav
    </li><li class="formatter-li">Outlook. A mon travail, je sauvegarde mon calendrier professionnel chez moi, automatiquement grâce au protocole Webdav.
    </li><li class="formatter-li">Sur mon téléphone, je synchronise mes contacts et mon agenda sauvegardés sur mon nextcloud au travers de Webdav.<br />
</li></ul><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-pour-les-fichiers">Pour les fichiers</h2><br />

<br />
Pour les fichiers, c'est simple. Prenons en exemple Zotero.<br />
Zotero demande une adresse webdav et y ajoute /zotero pour le nom du dossier.<br />
<br />
<img src="https://geekrungis.fr/upload/zotero.png" alt="zotero" title="zotero" /><br />
<br />
On créé donc un dossier zotero dans son nextcloud puis on entre dans Zotero l'adresse suivante :<br />
<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">https://serveurnextcloud.domaine.fr/remote.php/dav/files/remi</pre></pre></div></div><br />
<br />
Bien entendu, "serveurnextcloud.domaine.fr" est à remplacer par l'adresse de votre serveur nextcloud.<br />
Ici, mon dossier zotero est directement dans la racine de mes documents mais vous pouvez aussi le mettre dans un sous-dossier qu'il suffira d'ajouter à la fin du chemin :<br />
<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">https://serveurnextcloud.domaine.fr/remote.php/dav/files/remi/sous-dossier</pre></pre></div></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-pour-les-contacts-ou-les-agenda">Pour les contacts ou les agenda</h2><br />

<br />
Ici, on peut utiliser cette fonctionnalité pour par exemple accéder à ses contacts ou son agenda stockés sur Nextcloud depuis téléphone.<br />
Sous Android, l'application DAVx<sup>5</sup> permet cela.<br />
<br />
Ici, utilisez l'adresse suivante dans la configuration de l'application DAVx<sup>5</sup> :<br />
<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">https://serveurnextcloud.domaine.fr/remote.php/dav/</pre></pre></div></div><br />
<br />
L'application devrait normalement vous proposer vos agendas et listes de contacts.<br />
<br />
<br />]]></description>
                <pubDate>Mon, 14 Nov 2022 09:51:23 +0100</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Installer Nextcloud dans un environnement Proxmox]]></title>
                <link>https://geekrungis.fr/wiki/installer-nextcloud-dans-un-environnement-proxmox</link>
                <guid>https://geekrungis.fr/wiki/installer-nextcloud-dans-un-environnement-proxmox</guid>
                <description><![CDATA[<p style="text-align: center;"><img src="https://geekrungis.fr/upload/nextcloud_rigolo.jpeg" alt="nextcloud_rigolo" title="nextcloud_rigolo" /></p><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-introduction">Introduction</h2><br />

<br />
<h2 class="formatter-title">Introduction</h2><br />
<br />
Ici, je vais vous expliquer comment j'ai installé l'application Nextcloud sur mon environnement Proxmox hébergé à la maison. Si vous ne connaissez pas Nextcloud, je vous invite à visiter leur site web : <a href="https://nextcloud.com/fr_FR/">Nextcloud</a><br />
<br />
<h2 class="formatter-title">Qu'est-ce que Nextcloud</h2><br />
<br />
N'ayons pas peur des mots, Nextcloud c'est une sorte de Google hébergé soi-même, les fonctionnalités sont très nombreuses, je ne vous liste que les principales que j'utilise :<br />
<br />
<ul class="formatter-ul">
    <li class="formatter-li">Cloud pou stocker ses documents
    </li><li class="formatter-li">Galerie photo
    </li><li class="formatter-li">Hébergement et gestion de contacts
        </li><li class="formatter-li">Hébergement et gestion de calendriers
        </li><li class="formatter-li">Gestion de tâches
        </li><li class="formatter-li">Carnet de recettes
        </li><li class="formatter-li">Gestion de notes<br />
</li></ul><br />
Vous avez la possibilité d'héberger un nextcloud chez un hébergeur, je vous présente ici la façon dont je l'ai déployé sur mon propre serveur proxmox. Si vous souhaitez d'avantages d'informations sur Proxmox, je vous invite à lire les articles de cette catégorie.<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-installation">Installation</h2><br />

<br />
<h2 class="formatter-title">Installation dans proxmox</h2><br />
<br />
J'ai choisi d'installer Nextcloud dans un conteneur sous Debian 10, vous pouvez consulter cet article pour en savoir plus sur la création de conteneurs.<br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-serveur-web">Serveur web</h3><br />

<br />
<h3 class="formatter-title">Installation du serveur web et de la base de données</h3><br />
<br />
En premier lieu, on installe les applications de base nécessaires à faire tourner un site web (Apache, php, MariaDB)<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt <span style="color: #c20cb9; font-weight: bold;">install</span> apache2 php mariadb-server php-<span style="color: #7a0874; font-weight: bold;">&#123;</span>curl,gd,intl,xml,<span style="color: #c20cb9; font-weight: bold;">zip</span>,mbstring,json,mysql<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;</pre></pre></div></div><br />
<br />
Pour un peu de sécurité, on peut masquer la version de notre serveur web en modifiant le fichier /etc/apache2/conf-available/security.conf<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">vim</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>conf-available<span style="color: #000000; font-weight: bold;">/</span>security.conf
&nbsp;</pre></pre></div></div><br />
<br />
Ajouter la ligne suivante<br />
<div class="formatter-container formatter-code code-TEXT"><span class="formatter-title">Code TEXT : </span><div class="formatter-content"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
ServerSign = no
&nbsp;</pre></pre></div></div><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-nextcloud">Nextcloud</h3><br />

<br />
<h3 class="formatter-title">Installation de Nextcloud</h3><br />
<br />
Se placer dans le dossier du serveur web<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;</pre></pre></div></div><br />
<br />
Télécharger l'archive de Nextcloud<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">wget</span> https:<span style="color: #000000; font-weight: bold;">//</span>download.nextcloud.com<span style="color: #000000; font-weight: bold;">/</span>server<span style="color: #000000; font-weight: bold;">/</span>releases<span style="color: #000000; font-weight: bold;">/</span>nextcloud-20.0.0.tar.bz2
&nbsp;</pre></pre></div></div><br />
<span class="message-helper notice">Allez sur le site de Nextcloud pour récupérer le lien vers la dernière version</span><br />
<br />
Extraire l'archive<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xf</span> nextcloud-20.0.2.tar.bz2
&nbsp;</pre></pre></div></div><br />
<br />
Supprimer index.html dans www/html<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">rm</span> html<span style="color: #000000; font-weight: bold;">/</span>index.html
&nbsp;</pre></pre></div></div><br />
<br />
Copier le contenu de l&#8217;archive dans www/html<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
rsync <span style="color: #660033;">-a</span> nextcloud<span style="color: #000000; font-weight: bold;">/</span> html<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;</pre></pre></div></div><br />
<br />
Donner les droits à Apache<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> www-data html<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;</pre></pre></div></div><br />
<br />
Supprimer l&#8217;archive et le dossier nextcloud<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">rm</span> nextcloud-20.0.0.tar.bz2
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-R</span> nextcloud
&nbsp;</pre></pre></div></div><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-bdd">BDD</h3><br />

<br />
<h3 class="formatter-title">Paramétrage de la base de données</h3><br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> mysql_secure_installation
&nbsp;</pre></pre></div></div><br />
<span class="message-helper success">Modifier le mot de passe root puis répondre 'YES' à toutes les questions</span><br />
<br />
Pour la création de la base de données et de l'utilisateur, vous pouvez au choix installer une interface de gestion de base de données (voir mon article sur l'installation et l'utilisation d'Adminer) ou le faire via les commandes suivantes.<br />
<div class="formatter-container formatter-code code-BASH"><span class="formatter-title">Code BASH : </span><div class="formatter-content"><pre style="display:inline;"><pre class="bash" style="font-family:monospace;">&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> mysql <span style="color: #660033;">-u</span> root <span style="color: #660033;">-p</span>
&nbsp;</pre></pre></div></div><br />
<br />
<div class="formatter-container formatter-code code-SQL"><span class="formatter-title">Code SQL : </span><div class="formatter-content"><pre style="display:inline;"><pre class="sql" style="font-family:monospace;">&nbsp;
<span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">DATABASE</span> clouddb;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">ALL</span> <span style="color: #993333; font-weight: bold;">ON</span> clouddb<span style="color: #66cc66;">.*</span> <span style="color: #993333; font-weight: bold;">TO</span> <span style="color: #ff0000;">'clouddbuser'</span>@<span style="color: #ff0000;">'localhost'</span> <span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> <span style="color: #ff0000;">'password'</span>;
<span style="color: #993333; font-weight: bold;">FLUSH</span> PRIVILEGES;
&nbsp;</pre></pre></div></div><br />
<br />
Ensuite, l'accès à l'interface de nextcloud se fait en entrant l'adresse IP du serveur.<br />
<br />
<p style="text-align: center;"><img src="https://geekrungis.fr/upload/screenshot_installation_nextcloud.png" alt="screenshot_installation_nextcloud" title="screenshot_installation_nextcloud" /></p><br />
<br />
Ici, il ne vous reste plus qu'à entrer le login et le mot de passe que vous souhaitez ainsi que les informations sur la base de données que l'on vient de créer. Nextcloud s'installe ensuite.<br />
<br />
<p style="text-align: center;"><img src="https://geekrungis.fr/upload/screenshot_installation_nextcloud2.png" alt="screenshot_installation_nextcloud2" title="screenshot_installation_nextcloud2" /></p><br />
<br />
Puis...<br />
<br />
ENJOY !]]></description>
                <pubDate>Fri, 29 Jan 2021 17:20:54 +0100</pubDate>
                
            </item>
		
            <item>
                <title><![CDATA[Nextcloud]]></title>
                <link>https://geekrungis.fr/wiki/nextcloud</link>
                <guid>https://geekrungis.fr/wiki/nextcloud</guid>
                <description><![CDATA[Ici, je vais vous présenter comment j'ai déployé Nextcloud à la maison, installation, configuration, modules...]]></description>
                <pubDate>Fri, 29 Jan 2021 15:51:23 +0100</pubDate>
                
            </item>
		
	</channel>
</rss>
