Salut,
" je continu à chercher pour finir par tout comprendre et donc "gérer" mon installation de A à Z"
puis vouloir installer nextcloudpi
"NextCloudPi est une instance Nextcloud préinstallée et pré-configurée. Elle comprend une interface de gestion avec tous les outils dont vous avez besoin pour héberger vos données privées dans un seul package."
c'est assez contradictoire

maintenant un petit guide rapide pour installer nextcloud
Installation des paquets
apt install apache2 mariadb-server php7.0 libapache2-mod-php7.0 php7.0-mysql php7.0-mbstring php7.0-mcrypt php7.0-gd unzip
Paramétrage MariaDB
mysql -u root
mysql > grant all privileges on *.* to 'root'@'localhost' identified by "Achanger*";
mysql > flush privileges;
mysql > create database nextcloud;
mysql > exit
Installation Nextcloud
wget https://download.nextcloud.com/server/releases/nextcloud-14.0.3.zip
unzip nextcloud-14.0.3.zip -d /opt
rm -r /var/www/html
mv /opt/nextcloud /var/www/html
mkdir /var/www/data
chown -R www-data: /var/www
et on termine l'installation, via
il faudra renseigner, le dossier data
et mysql/mariadb
host : localhost
user : root
pass : Achanger*
database : nextcloud
il restera à peaufiner, installer un cache comme redis server, configurer opcache... mais cela ne fait pas 3 pages
Dernière modification par Freemaster (27-10-2018 16:10:48)