Diferencia entre revisiones de «Installar OwnCloud»
De enunpimpam
Línea 12: | Línea 12: | ||
apt-get install mariadb-server mariadb-client -y | apt-get install mariadb-server mariadb-client -y | ||
Paramos el servicio, encendemos y activamos. | Paramos el servicio, encendemos y activamos. | ||
− | + | ||
− | systemctl stop mariadb.service | + | systemctl stop mariadb.service |
− | systemctl start mariadb.service | + | systemctl start mariadb.service |
− | systemctl enable mariadb.service | + | systemctl enable mariadb.service |
− | + | ||
Iniciamos el proceso de configuración en la seguridad de MariaDB | Iniciamos el proceso de configuración en la seguridad de MariaDB | ||
Línea 22: | Línea 22: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Enter current password for root (enter for none): Pulsar Enter | Enter current password for root (enter for none): Pulsar Enter | ||
− | Set root password? [Y/n]: | + | Set root password? [Y/n]: Y |
New password: Enter password | New password: Enter password | ||
Re-enter new password: Repeat password | Re-enter new password: Repeat password |
Revisión del 12:51 29 abr 2020
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
Iniciamos el proceso de configuración en la seguridad de MariaDB
mysql_secure_installation
Enter current password for root (enter for none): Pulsar Enter Set root password? [Y/n]: Y 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