{% extends "admin_base.html" %} {% block title %}Add a New Server{% endblock %} {% block content %}

Create New Server


{% if get.disp is defined and get.disp != 1 %} {% if get.disp == 'missing_args' %}
Not all arguments were passed by the script.
{% elseif get.disp == 'gsd_offline' %}
The GSD daemon running on the server is not on or is blocked by your firewall. Please make sure it is accessable before creating a server.
{% elseif get.disp == 's_fail' %}
The server name you entered does not meet the requirements. Must be at least 4 characters, and no more than 35. Server name can only contain a-zA-Z0-9_-
{% elseif get.disp == 'n_fail' %}
The node selected does not seem to exist.
{% elseif get.disp == 'ip_fail' %}
The selected IP does not exist.
{% elseif get.disp == 'port_fail' %}
The selected port does not exist.
{% elseif get.disp == 'port_full' %}
The selected port is already in use.
{% elseif get.disp == 'e_fail' %}
The email you entered is invalid.
{% elseif get.disp == 'p_fail' %}
The passwords you entered did not match or were not at least 8 characters.
{% elseif get.disp == 'a_fail' %}
Account with that email does not exist in the system.
{% elseif get.disp == 'm_fail' %}
You entered a non-number for Disk and/or Memory.
{% elseif get.disp == 'b_fail' %}
You entered a non-number for Backup Files and/or Disk Space.
{% endif %} {% endif %}

Character Limits: a-zA-Z0-9_- (Max 35 characters)

MB
MB
%

If you do not want to limit CPU usage set the value to 0. To determine a value, take the number physical cores and multiply it by 100. For example, on a quad core system (4 * 100 = 400) there is 400% available. To limit a server to using half of a single core, you would set the value to 50. To allow a server to use up to two physical cores, set the value to 200.

{% endblock %} {% block javascript %} {% endblock %}