Installar OwnCloud
De enunpimpam
Revisión del 12:49 29 abr 2020 de Nacho (discusión | contribuciones)
Instalación Apache
apt install apache2
Desactivamos el directorio de escucha de Apache
sed -i "s/Options Indexes FollowSymLinks/Options FollowSymLinks/" /etc/apache2/apache2.conf
Paramos el servicio, encendemos y activamos.
systemctl stop apache2.service systemctl start apache2.service systemctl enable apache2.service
Instalación MariaDB Server
apt-get install mariadb-server mariadb-client -y
Paramos el servicio, encendemos y activamos.
systemctl stop mariadb.service
systemctl start mariadb.service
systemctl enable mariadb.service
<syntaxhighlight>
Iniciamos el proceso de configuración en la seguridad de MariaDB
mysql_secure_installation
<syntaxhighlight lang="bash">
Enter current password for root (enter for none): Pulsar Enter
Set root password? [Y/n]: <font color="red">Y</font>
New password: Enter password
Re-enter new password: Repeat 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