{% extends "base.html" %} {% from 'macros.html' import render_field, render_checkbox_field, render_form %} {% block header %}

Make your existing Gluu Server the Primary for a new cluster

{% endblock %} {% block content %}
{{ wform.csrf_token }}

This will be used as a load balancer hostname.

{% for error in wform.new_hostname.errors %}

{{ error }}

{% endfor %} {{ wform.new_hostname(class="form-control") }}

Ip address of load balancer.

{% for error in wform.nginx_ip.errors %}

{{ error }}

{% endfor %} {{ wform.nginx_ip(class="form-control") }}
{% for error in wform.current_hostname.errors %}

{{ error }}

{% endfor %} {{ wform.current_hostname(class="form-control") }}
{% for error in wform.ip.errors %}

{{ error }}

{% endfor %} {{ wform.ip(class="form-control") }}

After you click to next button, information about your current server will be gathered, missing data will be asked to you.

{% endblock %} {% block js %} {% endblock %}