Versions Compared

Key

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


Panel

Table of Contents

Introduction

...

IP

Hostname

Description

192.168.56.110

storage

NFS Server

192.168.56.100

vip

Virtual IP Addr

192.168.56.101

mft_1

MFT UDMG Server Node

192.168.56.102

mft_2

MFT UDMG Server Node

192.168.56.120

db

PostgreSQL Database

...

Add the directory that you want to share with the MFT UDMG Servers, for example /data:

...

Panel

# showmount -e
Export list for storage:
/data mft_1,mft_2

Configuring the first

...

UDMG Server

System Configuration

Configure the /etc/hosts file with the following entries:

...

Under the server.ini configuration the follow following settings must be updated:

...

Configure the NGINX service to reach the IP that was configured before:

Panel

upstream mftudmg_auth_proxy proxy {
    ip_hash;
    server <SERVERNAME or SERVER IP>:5000;
    keepalive 10;
}

server {
    listen <SERVERNAME or SERVER IP>::80 default_server;

    location / {
        try_files $uri $uri/ /index.html;
        root "/var/www/localhost/htdocs";
    }

    location /service/ {
      proxy_pass      http://mftudmg_auth_proxy/;
    }

# You may need this to prevent return 404 recursion.
    location = /404.html {
    internal;
    }
}


Start the nginx service.

Configuring the second

...

UDMG Server

Repeat the above steps with the following difference regarding the state of the virtual IP.

...