NEXTCLOUD: Instalación debian 9 con ISCSI

NEXTCLOUD: Instalación debian 9 con ISCSI
  • Para este proyecto vamos a configurar uns volumen ZFS compartidopor ISCSI con freenas 11, el cual será utilizado por Nextcloud para el almacenamiento de los datos de los usuarios.

Cliente ISCSI

  • Para configurar el cliente, instalamos el servicio
apt-get install open-iscsi
  • Establecemos que el servicio inicie al arrancar la maquina
nano /etc/iscsi/iscsid.conf
  • Buscamos y remplazamos
node.startup = manual
X
node.startup = automatic
  • Con esto ya podemos ejecutar el comando que nos devuelve el target
iscsiadm -m discovery -t sendtargets -p 10.20.200.37
  • RESULTADO:
10.20.200.37:3260,-1 iqn.2005-10.org.freenas.ctl:nube-siua
  • Podemos consultar los target’s descubiertos con:
iscsiadm -m discovery
  • RESULTADO
10.20.200.37:3260 via sendtargets
  • Podemos consultar la información que obtuvimos del NAS
iscsiadm -m node –targetname iqn.2005-10.org.freenas.ctl:nube-siua -p 10.20.200.37
  • Si tuviéramos que cambiar la información del usuario:
iscsiadm -m node --targetname iqn.2005-10.org.freenas.ctl:nube-siua -p 10.20.200.37 -o update -n node.session.auth.username -v ugit
  • Si tuviéramos que cambiar la contraseña del usuario
iscsiadm -m node --targetname iqn.2005-10.org.freenas.ctl:nube-siua -p 10.20.200.37 -o update -n node.session.auth.password -v CA2
  • Nos logeamos en el NAS
iscsiadm -m node --targetname iqn.2005-10.org.freenas.ctl:nube-siua -p 10.20.200.37 -l




  • RESULTADO
Logging in to [iface: default, target: iqn.2005-10.org.freenas.ctl:nube-siua, portal: 10.20.200.37,3260] (multiple)
Login to [iface: default, target: iqn.2005-10.org.freenas.ctl:nube-siua, portal: 10.20.200.37,3260] successful.
  • También lo podemos comprobar con:
dmesg
  • RESULTADO
[161357.307274] sd 2:0:0:0: [sda] Attached SCSI disk
  • Ahora debemos formatear el NAS asignándole un formato, para esto debemos tener instalado parted
apt-get update && apt-get install parted
  • Seguido vamos a ejecutar el comando fdisk para consultar los discos disponibles
fdisk -l
  • RESULTADO: podemos observar que es el disco «/dev/sda»
Disk /dev/sda: 10 TiB, 10995116277760 bytes, 21474836480 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 16384 bytes
I/O size (minimum/optimal): 16384 bytes / 1048576 bytes
  • Ingresamos a la herramienta parted para el disco sda
parted /dev/sda
  • Le establecemos una tabla de particiones
GNU Parted 3.2
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) mklabel gpt
  • Establecemos el medida
(parted) unit TB
  • Creamos la partición
(parted) mkpart primary 0TB 10TB
  • Salimos
quit
  • Ahora si volvemos a ejecutar fdisk, vemos que ya tenemos una partición «sda1»
fdisk -l
  • RESULTADO:
Disk /dev/sda: 10 TiB, 10995116277760 bytes, 21474836480 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 16384 bytes
I/O size (minimum/optimal): 16384 bytes / 1048576 bytes
Disklabel type: gpt
Disk identifier: 450C5C3B-FAD3-4909-AD98-9E298A7D937E

Device Start End Sectors Size Type
/dev/sda1 2048 19531249663 19531247616 9.1T Linux filesystem
  • Establecemos un sistema de archivos (puede tardar un tiempo)
mkfs.ext4 /dev/sda1




  • Le creamos una etiqueta
e2label /dev/sda1 NUBE-SIUA
  • Le indicamos al iscsi que arranque de forma automatica
iscsiadm -m node --targetname iqn.2005-10.org.freenas.ctl:nube-siua -p 10.20.200.37 -o update -n node.conn[0].startup -v automatic
  • Creamos las reglas para que se monte automáticamente
nano /etc/udev/rules.d/z99_open-iSCSI.rules
  • Agregamos
ENV{ID_PATH}=="*iscsi*", RUN+="/bin/mount -a -O _netdev"
  • Creamos una carpeta para montar el ISCSI
mkdir /ISCSI_NUBE-SIUA
  • Le damos permisos
chmod 777 -R /ISCSI_NUBE-SIUA/
  • Determinamos el UUID
blkid
  • RESULTADO
/dev/vda2: UUID="aa06d285-127a-471b-b915-9261d2470c65" TYPE="ext4" PARTUUID="f041a6d8-02"
/dev/vda1: UUID="d18de9da-d40a-4e67-acaa-6325b881b792" TYPE="swap" PARTUUID="f041a6d8-01"
/dev/sr0: UUID="2017-12-09-12-12-33-00" LABEL="Debian 9.3.0 amd64 n" TYPE="iso9660" PTUUID="0347fd41" PTTYPE="dos"
/dev/sda1: LABEL="NUBE-SIUA" UUID="047a635e-7c43-4ac5-a64e-ec09ceec6239" TYPE="ext4" PARTLABEL="primary" PARTUUID="bf73e811-300e-41d9-bcbf-6957d565c12e"
  • Abrimos el «fstab»
nano /etc/fstab
  • Agregamos
UUID=047a635e-7c43-4ac5-a64e-ec09ceec6239  /ISCSI_NUBE-SIUA  ext4 _netdev 0 0

Instalación de APACHE Y PHP 7.2

  • Instalamos apache 2 guía: aquí
  • Adicional
apt install php7.2 libapache2-mod-php7.2 php7.2-common php7.2-gd php7.2-json php7.2-mysql php7.2-curl php7.2-mbstring php7.2-intl php7.2-imagick php7.2-xml php7.2-zip

Instalación de MYSQL

  • Instalamos
apt install mysql-server mysql-client
  • Configuramos el servicio
mysql_secure_installation
  • RESULTADO
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none): HB3

OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

You already have a root password set, so you can safely answer 'n'.

Change the root password? [Y/n] n

... skipping.

By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] Y
... Success!

Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] Y
... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] Y

- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] Y

... Success!

Cleaning up...

All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

Crear usuario remoto

  • Descomentamos que solo se pueda conectar por la ip local, abrimos
nano /etc/mysql/mariadb.conf.d/50-server.cnf  
  • Modificamos
bind-address           = 127.0.0.1
X
#bind-address           = 127.0.0.1
  • Reiniciamos el servicio
service mariadb restart
  • Ingresamos por la terminal con el usuario «root»
mysql -u root -p -h mysqlp.siua.ac.cr
  • Creamos la base de datos
CREATE DATABASE bd_nube_siua;
  • Creamos el usuario remoto
CREATE USER 'remoto'@'%' IDENTIFIED BY 'RB0';
  • Le otorgamos privilegios
GRANT ALL PRIVILEGES ON bd_nube_siua.* TO 'remoto'@'%' IDENTIFIED BY 'RB0' with grant option;
  • Recargamos los privilegios
FLUSH PRIVILEGES;
  • Salimos
exit
  • Ahora ingresamos por WorkBeach y le orotgamos permisos para gantizar el correcto funcionamiento

Instalación de NEXTCLOUD

  • Ingresamos al directorio www
cd /var/www/html/
  • Descargamos la última versión de:
https://download.nextcloud.com/server/releases/
para el ejemplo: 
wget https://download.nextcloud.com/server/releases/nextcloud-13.0.5.zip




  •  Descomprimimos
unzip nextcloud-13.0.5.zip
  • Copiamos los archivos a su destino en www
cp -r /var/www/html/nextcloud /var/www/html/SIUA
  • Cambiamos el dueño de la carpeta a www-data
chown -R www-data:www-data /var/www/html/SIUA
chown -R www-data:www-data /ISCSI_NUBE-SIUA/
  • Con esto podemos ingresar por al navegador para continuar con la instalación
http://10.20.200.42/SIUA/index.php




  • Vamos a seleccionar «Almacenamiento & Bases de Datos » seleccionamos MYSQL y completamos los datos