Diferencia entre revisiones de «Installar OwnCloud»

De enunpimpam
Saltar a: navegación, buscar
(Página creada con «Category:Linux Category:Ubuntu ==Instalación Apache== apt install apache2 Desactivamos el directorio de escucha de Apache sed -i "s/Options Indexes FollowSymLink…»)
 
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
+
<syntaxhighlight lang="markdown">
systemctl start mariadb.service
+
systemctl stop mariadb.service
systemctl enable mariadb.service
+
systemctl start mariadb.service
 +
systemctl enable mariadb.service
 +
<syntaxhighlight>
 +
 
 
Iniciamos el proceso de configuración en la seguridad de MariaDB
 
Iniciamos el proceso de configuración en la seguridad de MariaDB
 
  mysql_secure_installation
 
  mysql_secure_installation
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
Enter current password for root (enter for none): Just press the Enter
+
Enter current password for root (enter for none): Pulsar Enter
Set root password? [Y/n]: Y
+
Set root password? [Y/n]: <font color="red">Y</font>
 
New password: Enter password
 
New password: Enter password
 
Re-enter new password: Repeat password
 
Re-enter new password: Repeat password

Revisión del 12:49 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
<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