Versions Compared

Key

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

...

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

    Code Block
    sudo mkdir /media/netdir


  3. Install the cifs-utils utility.

    Code Block
    sudo apt-get install cifs-utils


  4. Attach the shared network folder to the created netdir folder.

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

    where,

    1. IP - address NAS address,
    2. common shared network folder,
    3. user, password NAS access credentials,
    4. uid, gid id of the user and ngp group; they . They can be obtained using the following command:

      Code Block
      id ngp


  5. In the Axxon One metadata storage settings, specify the /media/netdir path (see Configuring storage of the system log and metadata).

...

  1. Open the /etc/fstab file.

    Code Block
    sudo nano /etc/fstab


  2. Add the following string to the file:

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


  3. Save the file.