Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Para almacenar los metadatos en un almacenamiento conectado a la red (NAS),

...

siga estos pasos:

  1. Cree una carpeta de red compartida.
  2. En el servidor del SO Linux, cree la carpeta netdir. Por ejemplo, en la carpeta /media

  3. Create a shared network folder.
  4. On the Server in Linux OS, create the netdir folder. For example, in the /media folder:

    Code Block
    sudo mkdir /media/netdir


  5. Install the Instale la herramienta cifs-utils utility.

    Code Block
    sudo apt-get install cifs-utils


  6. Attach the shared network folder to the created netdir folderAdjunte la carpeta de red compartida a la carpeta netdir que ha creado.

    Code Block
    sudo mount -t cifs //IP-address/common /media/netdir -o user=User,password=123,uid=1001,gid=1002,vers=2.0

    wheredonde,

    1. IP-address − dirección NAS address,
    2. common − shared network foldercarpeta de red compartida,
    3. user, password − credenciales de acceso a NAS access credentials,
    4. uid, gid − id of the user and ngp group; they can be obtained using the following commanddel usuario y grupo ngp; se pueden obtener usando el siguiente comando:

      Code Block
      id ngp


  7. In the En los ajustes de almacenamiento de metadatos de Axxon One metadata storage settings, specify the , especifique la ruta /media/netdir path (see Configuring storage of the system log and metadata).

After you restart Linux OS, the attached folder will be deleted. To configure the network folder to be attached on the OS loading, do the following:

  1. (ver Configurar el almacenamiento del registro de sistema y los metadatos).

La carpeta adjuntada se eliminará tras haber reiniciado el SO Linux. Para configurar la carpeta de red a vincular en la carga del SO, siga estos pasos:

  1. Abra el fichero /etc/fstabOpen the /etc/fstab file.

    Code Block
    sudo nano /etc/fstab


  2. Add the following string to the fileAñada la siguiente cadena al fichero:

    Code Block
    //IP-address/common /media/netdir cifs user=User,password=123,uid=1001,gid=1002,vers=2.0 0 0


  3. Save fileGuarde el fichero.