<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.datatenant.com/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dtadmin</id>
	<title>DataTenant Knowledgebase - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.datatenant.com/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dtadmin"/>
	<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php/Special:Contributions/Dtadmin"/>
	<updated>2026-06-05T23:14:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=245</id>
		<title>Create local login for Linux VMs</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=245"/>
		<updated>2025-02-28T17:09:30Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you inject a local username and password into Linux instances at boot.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some users prefer to use private keys to grant themselves access to their virtual machines, but some users prefer to simply define a username and password that will allow them to login directly to the console or easily over SSH. With most Linux based operating systems, the process to do this is easy.&lt;br /&gt;
&lt;br /&gt;
== Input a Cloud config ==&lt;br /&gt;
During instance creation, there is a menu called the &#039;Cloud config&#039;. This is where special commands can be input that will be executed automatically during first boot. Here is an example of a block of commands that can be put into the Cloud config menu to create a local username and password. &#039;&#039;&#039;&#039;&#039;Remember to update this block with the username and password you want to use.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#cloud-config&lt;br /&gt;
users:&lt;br /&gt;
  - name: myadmin&lt;br /&gt;
    groups: sudo&lt;br /&gt;
    sudo: [&#039;ALL=(ALL) NOPASSWD:ALL&#039;]&lt;br /&gt;
    shell: /bin/bash&lt;br /&gt;
    lock_passwd: false&lt;br /&gt;
    ssh-authorized-keys: []  # Ensure no SSH keys are required&lt;br /&gt;
&lt;br /&gt;
ssh_pwauth: true  # Enable password authentication&lt;br /&gt;
&lt;br /&gt;
runcmd:&lt;br /&gt;
  - echo &amp;quot;myadmin:MyEasyPassword1&amp;quot; | sudo chpasswd  # Set password using chpasswd&lt;br /&gt;
  - sudo sed -i &#039;s/^#PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo sed -i &#039;s/^PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo systemctl restart sshd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: The users created with this code block will be able to SSH to your virtual machine (if port 22 is allowed) and have root access. Protect the password carefully!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:CloudConfig.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When the instance has been created, you should be able to login to the console (or SSH) with the username/password specified in your Cloud config block.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=244</id>
		<title>Create local login for Linux VMs</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=244"/>
		<updated>2025-02-28T17:08:16Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you inject a local username and password into Linux instances at boot.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some users prefer to use private keys to grant themselves access to their virtual machines, but some users prefer to simply define a username and password that will allow them to login directly to the console or easily over SSH. With most Linux based operating systems, the process to do this is easy.&lt;br /&gt;
&lt;br /&gt;
== Input a Cloud config ==&lt;br /&gt;
During instance creation, there is a menu called the &#039;Cloud config&#039;. This is where special commands can be input that will be executed automatically during first boot. Here is an example of a block of commands that can be put into the Cloud config menu to create a local username and password.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#cloud-config&lt;br /&gt;
users:&lt;br /&gt;
  - name: myadmin&lt;br /&gt;
    groups: sudo&lt;br /&gt;
    sudo: [&#039;ALL=(ALL) NOPASSWD:ALL&#039;]&lt;br /&gt;
    shell: /bin/bash&lt;br /&gt;
    lock_passwd: false&lt;br /&gt;
    ssh-authorized-keys: []  # Ensure no SSH keys are required&lt;br /&gt;
&lt;br /&gt;
ssh_pwauth: true  # Enable password authentication&lt;br /&gt;
&lt;br /&gt;
runcmd:&lt;br /&gt;
  - echo &amp;quot;myadmin:MyEasyPassword1&amp;quot; | sudo chpasswd  # Set password using chpasswd&lt;br /&gt;
  - sudo sed -i &#039;s/^#PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo sed -i &#039;s/^PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo systemctl restart sshd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: The users created with this code block will be able to SSH to your virtual machine (if port 22 is allowed) and have root access. Protect the password carefully!&lt;br /&gt;
&lt;br /&gt;
[[File:CloudConfig.png|border|600px]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=File:CloudConfig.png&amp;diff=243</id>
		<title>File:CloudConfig.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=File:CloudConfig.png&amp;diff=243"/>
		<updated>2025-02-28T17:07:57Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=242</id>
		<title>Create local login for Linux VMs</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=242"/>
		<updated>2025-02-28T17:07:02Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you inject a local username and password into Linux instances at boot.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some users prefer to use private keys to grant themselves access to their virtual machines, but some users prefer to simply define a username and password that will allow them to login directly to the console or easily over SSH. With most Linux based operating systems, the process to do this is easy.&lt;br /&gt;
&lt;br /&gt;
== Input a Cloud config ==&lt;br /&gt;
During instance creation, there is a menu called the &#039;Cloud config&#039;. This is where special commands can be input that will be executed automatically during first boot. Here is an example of a block of commands that can be put into the Cloud config menu to create a local username and password.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#cloud-config&lt;br /&gt;
users:&lt;br /&gt;
  - name: myadmin&lt;br /&gt;
    groups: sudo&lt;br /&gt;
    sudo: [&#039;ALL=(ALL) NOPASSWD:ALL&#039;]&lt;br /&gt;
    shell: /bin/bash&lt;br /&gt;
    lock_passwd: false&lt;br /&gt;
    ssh-authorized-keys: []  # Ensure no SSH keys are required&lt;br /&gt;
&lt;br /&gt;
ssh_pwauth: true  # Enable password authentication&lt;br /&gt;
&lt;br /&gt;
runcmd:&lt;br /&gt;
  - echo &amp;quot;myadmin:MyEasyPassword1&amp;quot; | sudo chpasswd  # Set password using chpasswd&lt;br /&gt;
  - sudo sed -i &#039;s/^#PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo sed -i &#039;s/^PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo systemctl restart sshd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: The users created with this code block will be able to SSH to your virtual machine (if port 22 is allowed) and have root access. Protect the password carefully!&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_Generate.png|border|600px]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=241</id>
		<title>Create local login for Linux VMs</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=241"/>
		<updated>2025-02-28T17:06:00Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you inject a local username and password into Linux instances at boot.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some users prefer to use private keys to grant themselves access to their virtual machines, but some users prefer to simply define a username and password that will allow them to login directly to the console or easily over SSH. With most Linux based operating systems, the process to do this is easy.&lt;br /&gt;
&lt;br /&gt;
== Input a Cloud config ==&lt;br /&gt;
During instance creation, there is a menu called the &#039;Cloud config&#039;. This is where special commands can be input that will be executed automatically during first boot. Here is an example of a block of commands that can be put into the Cloud config menu to create a local username and password.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#cloud-config&lt;br /&gt;
users:&lt;br /&gt;
  - name: myadmin&lt;br /&gt;
    groups: sudo&lt;br /&gt;
    sudo: [&#039;ALL=(ALL) NOPASSWD:ALL&#039;]&lt;br /&gt;
    shell: /bin/bash&lt;br /&gt;
    lock_passwd: false&lt;br /&gt;
    ssh-authorized-keys: []  # Ensure no SSH keys are required&lt;br /&gt;
&lt;br /&gt;
ssh_pwauth: true  # Enable password authentication&lt;br /&gt;
&lt;br /&gt;
runcmd:&lt;br /&gt;
  - echo &amp;quot;myadmin:MyEasyPassword1&amp;quot; | sudo chpasswd  # Set password using chpasswd&lt;br /&gt;
  - sudo sed -i &#039;s/^#PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo sed -i &#039;s/^PasswordAuthentication no/PasswordAuthentication yes/&#039; /etc/ssh/sshd_config&lt;br /&gt;
  - sudo systemctl restart sshd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=240</id>
		<title>Create local login for Linux VMs</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=240"/>
		<updated>2025-02-28T17:04:27Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you inject a local username and password into Linux instances at boot.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some users prefer to use private keys to grant themselves access to their virtual machines, but some users prefer to simply define a username and password that will allow them to login directly to the console or easily over SSH. With most Linux based operating systems, the process to do this is easy.&lt;br /&gt;
&lt;br /&gt;
== Input a Cloud config ==&lt;br /&gt;
During instance creation, there is a block called the &#039;Cloud config&#039;. This is where special commands can be input that will be executed automatically during first boot. This text block &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@echo off&lt;br /&gt;
echo.&lt;br /&gt;
echo Hello world&lt;br /&gt;
echo.&lt;br /&gt;
pause&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=239</id>
		<title>Create local login for Linux VMs</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_local_login_for_Linux_VMs&amp;diff=239"/>
		<updated>2025-02-28T17:01:19Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Created page with &amp;quot;test&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=238</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=238"/>
		<updated>2024-10-15T17:10:39Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.&lt;br /&gt;
&lt;br /&gt;
==Creating Private Networks==&lt;br /&gt;
In your project, you can create nearly endless numbers of private virtual networks for your use in each region currently available to you. To get started, login to the cloud and select the project you&#039;d like to work in.&lt;br /&gt;
&lt;br /&gt;
# In the Cloud menu on the left hand side, select &#039;Networking&#039;.&lt;br /&gt;
# In the top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
# Select which region you&#039;d like to create your network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Give your Network a name. You can name your network something descriptive, like &#039;SQL Database Network&#039;, or something specific, like &#039;192.168.0.0/24&#039;.&lt;br /&gt;
# Select the &#039;Enable DHCP&#039; option if it is not already enabled.&lt;br /&gt;
## Enabling DHCP on these networks is important, as newly created virtual machines need network connectivity in order to process their cloud initialization configuration. In the rare cases where you do not wish to have DHCP enabled on these private networks, please review our [[Config Drive]] article to ensure cloud initialization is still performed successfully.&lt;br /&gt;
# In the CIDR field, enter the subnet you wish to use in this private network. It should be written in CIDR notation (as in, 10.0.1.0/24 or something similar).&lt;br /&gt;
# In the Allocation Pools field, you have the option to narrow the range of IPs that the cloud is allowed to hand out to virtual machines within this network. You can write this in the form of &#039;&#039;Starting IP address, Ending IP address&#039;&#039;.&lt;br /&gt;
## For example, when creating a &#039;&#039;192.168.0.0/24&#039;&#039; network, you could opt to narrow the allocation range by entering &#039;&#039;192.168.0.10, 192.168.0.100&#039;&#039;. This would ensure only those 90 addresses would be handed out.&lt;br /&gt;
# In the DNS Name Servers field, you can fill in what DNS servers you would like to be given to virtual machines that use this network. You can write this in the form of &#039;&#039;First DNS IP Second DNS IP Third DNS IP&#039;&#039;.&lt;br /&gt;
## For example, if I wanted to make use of a private DNS server at &#039;&#039;192.168.0.5&#039;&#039; and a public DNS server at &#039;&#039;8.8.4.4&#039;&#039;, I would enter &#039;&#039;192.168.0.5 8.8.4.4&#039;&#039; in that field.&lt;br /&gt;
# In the Host Routes field, you can enter any static routes you would like to be injected into virtual machines that make use of this network.&lt;br /&gt;
# If you wish to customize the default gateway IP that will be advertised to virtual machines that use this network, you can toggle the &#039;Custom Gateway IP&#039; option and enter a custom gateway IP address. If not, the first address in the network will be assumed to be the gateway.&lt;br /&gt;
&lt;br /&gt;
When you&#039;ve entered in these details, select &#039;Create Network&#039; at the bottom to create your private network in your selected region.&lt;br /&gt;
&lt;br /&gt;
==Creating a Virtual Router==&lt;br /&gt;
Once you&#039;ve created a private network, you have the option of creating a virtual router to bridge together multiple private networks, or to give your private network access to the internet. Once a private network has been linked to the internet, you will also have the option to use &#039;Floating IP addresses&#039; to make your virtual machine accessible from the internet.&lt;br /&gt;
&lt;br /&gt;
# In the Cloud menu on the left hand side, select &#039;Networking&#039;.&lt;br /&gt;
# In the top menu, choose &#039;Routers&#039;.&lt;br /&gt;
# Select &#039;Create router&#039;.&lt;br /&gt;
#&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=237</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=237"/>
		<updated>2024-10-15T16:34:26Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.&lt;br /&gt;
&lt;br /&gt;
==Creating Private Networks==&lt;br /&gt;
In your project, you can create nearly endless numbers of private virtual networks for your use in each region currently available to you. To get started, login to the cloud and select the project you&#039;d like to work in.&lt;br /&gt;
&lt;br /&gt;
# In the Cloud menu on the left hand side, select &#039;Networking&#039;.&lt;br /&gt;
# In the top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
# Select which region you&#039;d like to create your network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Give your Network a name. You can name your network something descriptive, like &#039;SQL Database Network&#039;, or something specific, like &#039;192.168.0.0/24&#039;.&lt;br /&gt;
# Select the &#039;Enable DHCP&#039; option if it is not already enabled.&lt;br /&gt;
## Enabling DHCP on these networks is important, as newly created virtual machines need network connectivity in order to process their cloud initialization configuration. In the rare cases where you do not wish to have DHCP enabled on these private networks, please review our [[Config Drive]] article to ensure cloud initialization is still performed successfully.&lt;br /&gt;
# In the CIDR field, enter the subnet you wish to use in this private network. It should be written in CIDR notation (as in, 10.0.1.0/24 or something similar).&lt;br /&gt;
# In the Allocation Pools field, you have the option to narrow the range of IPs that the cloud is allowed to hand out to virtual machines within this network. You can write this in the form of &#039;&#039;Starting IP address, Ending IP address&#039;&#039;.&lt;br /&gt;
## For example, when creating a &#039;&#039;192.168.0.0/24&#039;&#039; network, you could opt to narrow the allocation range by entering &#039;&#039;192.168.0.10, 192.168.0.100&#039;&#039;. This would ensure only those 90 addresses would be handed out.&lt;br /&gt;
# In the DNS Name Servers field, you can fill in what DNS servers you would like to be given to virtual machines that use this network. You can write this in the form of &#039;&#039;First DNS IP Second DNS IP Third DNS IP&#039;&#039;.&lt;br /&gt;
## For example, if I wanted to make use of a private DNS server at &#039;&#039;192.168.0.5&#039;&#039; and a public DNS server at &#039;&#039;8.8.4.4&#039;&#039;, I would enter &#039;&#039;192.168.0.5 8.8.4.4&#039;&#039; in that field.&lt;br /&gt;
# In the Host Routes field, you can enter any static routes you would like to be injected into virtual machines that make use of this network.&lt;br /&gt;
# If you wish to customize the default gateway IP that will be advertised to virtual machines that use this network, you can toggle the &#039;Custom Gateway IP&#039; option and enter a custom gateway IP address. If not, the first address in the network will be assumed to be the gateway.&lt;br /&gt;
&lt;br /&gt;
When you&#039;ve entered in these details, select &#039;Create Network&#039; at the bottom to create your private network in your selected region.&lt;br /&gt;
&lt;br /&gt;
==Creating a Virtual Router==&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=236</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=236"/>
		<updated>2024-10-15T16:29:45Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.&lt;br /&gt;
&lt;br /&gt;
==Creating Private Networks==&lt;br /&gt;
In your project, you can create nearly endless numbers of private virtual networks for your use in each region currently available to you. To get started, login to the cloud and select the project you&#039;d like to work in.&lt;br /&gt;
&lt;br /&gt;
# In the Cloud menu on the left hand side, select &#039;Networking&#039;.&lt;br /&gt;
# In the top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
# Select which region you&#039;d like to create your network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Give your Network a name. You can name your network something descriptive, like &#039;SQL Database Network&#039;, or something specific, like &#039;192.168.0.0/24&#039;.&lt;br /&gt;
# Select the &#039;Enable DHCP&#039; option if it is not already enabled.&lt;br /&gt;
## Enabling DHCP on these networks is important, as newly created virtual machines need network connectivity in order to process their cloud initialization configuration. In the rare cases where you do not wish to have DHCP enabled on these private networks, please review our [[Config Drive]] article to ensure cloud initialization is still performed successfully.&lt;br /&gt;
# In the CIDR field, enter the subnet you wish to use in this private network. It should be written in CIDR notation (as in, 10.0.1.0/24 or something similar).&lt;br /&gt;
# In the Allocation Pools field, you have the option to narrow the range of IPs that the cloud is allowed to hand out to virtual machines within this network. You can write this in the form of &#039;&#039;Starting IP address, Ending IP address&#039;&#039;.&lt;br /&gt;
## For example, when creating a &#039;&#039;192.168.0.0/24&#039;&#039; network, you could opt to narrow the allocation range by entering &#039;&#039;192.168.0.10, 192.168.0.100&#039;&#039;. This would ensure only those 90 addresses would be handed out.&lt;br /&gt;
# In the DNS Name Servers field, you can fill in what DNS servers you would like to be&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=235</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=235"/>
		<updated>2024-10-15T16:21:39Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.&lt;br /&gt;
&lt;br /&gt;
==Creating Private Networks==&lt;br /&gt;
In your project, you can create nearly endless numbers of private virtual networks for your use in each region currently available to you. To get started, login to the cloud and select the project you&#039;d like to work in.&lt;br /&gt;
&lt;br /&gt;
# In the Cloud menu on the left hand side, select &#039;Networking&#039;.&lt;br /&gt;
# In the top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
# Select which region you&#039;d like to create your network in. For more information about regions, please review our [[Regions]] article.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=234</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=234"/>
		<updated>2024-10-15T16:20:29Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.&lt;br /&gt;
&lt;br /&gt;
==Creating Private Networks==&lt;br /&gt;
In your project, you can create nearly endless numbers of private virtual networks for your use in each region currently available to you. To get started, login to the cloud and select the project you&#039;d like to work in.&lt;br /&gt;
&lt;br /&gt;
* In the Cloud menu on the left hand side, select &#039;Networking&#039;.&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=233</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Networking&amp;diff=233"/>
		<updated>2024-10-15T16:18:10Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Created page with &amp;quot;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;  The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.  ==Creating Private Networks==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will explain DataTenant public cloud networking.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The DataTenant public cloud makes it easy to create private networks for your virtual machines and to connect them or advertise them to the internet.&lt;br /&gt;
&lt;br /&gt;
==Creating Private Networks==&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Regions&amp;diff=232</id>
		<title>Regions</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Regions&amp;diff=232"/>
		<updated>2024-10-15T16:11:47Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article explains DataTenant cloud regions.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Regions are geographically disparate instances of the DataTenant public cloud that you can deploy your workloads into. Deploying into multiple regions can be an effective high availability or disaster recovery strategy, as natural disasters/outages will likely only affect one region at a time.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ Current Regions&lt;br /&gt;
|-&lt;br /&gt;
! Region !! Location&lt;br /&gt;
|-&lt;br /&gt;
| Central || Bettendorf, Iowa&lt;br /&gt;
|-&lt;br /&gt;
| South || Springfield, MO&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes on Regions ==&lt;br /&gt;
&lt;br /&gt;
Each DataTenant cloud region is a standalone instance of the cloud, meaning the resources created in each cloud are unique to that region. So, for example, a keypair created in the Central region will not be available to use in the South region, and vice versa. In order to use the same keypair for both regions, you&#039;d need to import the keypair into whichever region it is not currently available in.&lt;br /&gt;
&lt;br /&gt;
This is also true for networking. A network that makes use of subnet &#039;&#039;192.168.0.0/24&#039;&#039; in one region will not automatically be able to communicate with devices that use the same subnet in a different region. The two networks would be considered isolated private networks, and would have to be bridged together with a pair of network appliances (one in each region).&lt;br /&gt;
&lt;br /&gt;
DataTenant can create custom layer two stretched networks between multiple regions on request. Please contact support@datatenant.com to inquire about setting up this option.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Regions&amp;diff=231</id>
		<title>Regions</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Regions&amp;diff=231"/>
		<updated>2024-10-15T16:06:22Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Created page with &amp;quot;&amp;lt;strong&amp;gt;This article explains DataTenant cloud regions.&amp;lt;/strong&amp;gt;  Regions are geographically disparate instances of the DataTenant public cloud that you can deploy your workloads into. Deploying into multiple regions can be an effective high availability or disaster recovery strategy, as natural disasters/outages will likely only affect one region at a time.  {| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot; |+ Current Regions |- ! Region !! Location |- | Central || Bettendorf, I...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article explains DataTenant cloud regions.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Regions are geographically disparate instances of the DataTenant public cloud that you can deploy your workloads into. Deploying into multiple regions can be an effective high availability or disaster recovery strategy, as natural disasters/outages will likely only affect one region at a time.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ Current Regions&lt;br /&gt;
|-&lt;br /&gt;
! Region !! Location&lt;br /&gt;
|-&lt;br /&gt;
| Central || Bettendorf, Iowa&lt;br /&gt;
|-&lt;br /&gt;
| South || Springfield, MO&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Notes on Regions ==&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Logging_in_to_a_new_virtual_machine&amp;diff=230</id>
		<title>Logging in to a new virtual machine</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Logging_in_to_a_new_virtual_machine&amp;diff=230"/>
		<updated>2024-10-10T16:16:16Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Logging in to a new virtual machine to Logging in to a new virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Logging in to a new virtual machine (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Logging_in_to_a_new_virtual_machine_(Advanced_Console)&amp;diff=229</id>
		<title>Logging in to a new virtual machine (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Logging_in_to_a_new_virtual_machine_(Advanced_Console)&amp;diff=229"/>
		<updated>2024-10-10T16:16:16Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Logging in to a new virtual machine to Logging in to a new virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you log into a new virtual machine using your personal key pair.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: This article does not apply to Virtual Appliances, which have a default username and password that can be used for console logins. To find these default username and passwords, please review our [[Virtual Appliance default username and passwords]] article.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating your first virtual machine/instance, you would have needed to create a personal key pair by following our [[Create a keypair]] article. Done correctly, you would have ended up with a public key imported into the DataTenant cloud and two copies of your private key saved somewhere you can access. This article will guide you through using those two private keys to access an instance created using your public key.&lt;br /&gt;
&lt;br /&gt;
== Logging into a Windows virtual machine/instance  ==&lt;br /&gt;
When you create a new virtual machine using a Windows image, your public key will be used to encrypt the Administrator password on the instance. You can use your private key to decrypt that password and then login using the Administrator account.&lt;br /&gt;
&lt;br /&gt;
To begin, login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Actions&#039; menu for your instance, choose &#039;Retrieve Password&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_RetrievePassword.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: It takes a minute or two after a Windows instance is fully created for the Administrator password to be set. If it the encrypted password is not available right away, wait a couple of minutes and check again. If it is still not available, please contact support@datatenant.com for further assistance.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the &#039;Retrieve Instance Password&#039; screen, copy and paste the contents of your OpenSSH key into the &#039;Private Key&#039; text box, or locate the file you saved that contains your OpenSSH key. Click &#039;Decrypt Password&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_RetrievePassword2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The decrypted password will appear in the &#039;Password&#039; field. Copy it somewhere accessible and return to the &#039;Instances&#039; menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on the Instance Name of the instance you want to login to. Click on the &#039;Console&#039; tab to interact with the console session of the instance.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Console.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If your Windows instance prompts you to change the Administrator password, click &#039;Cancel&#039;.  Press the &#039;Send Ctrl Alt Delete&#039; button in the top right hand corner of the console to bring you to the login screen. Enter the decrypted Administrator password to login.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Console2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: This process only works to retrieve the password initially set on the instance. Once you change the Administrator password, this process can no longer be used to retrieve the current Administrator password.&lt;br /&gt;
&lt;br /&gt;
== Logging into a Linux virtual machine/instance  ==&lt;br /&gt;
When you create a new virtual machine/instance using a Linux image, your public key will be injected into the list of public keys that are allowed to login to the instance via SSH. You can then provide your private key to your SSH platform of choice to login to the instance.&lt;br /&gt;
&lt;br /&gt;
To login, you will first need to have network access to the instance. Follow our [[Associate a floating IP]] article and review our [[Create or edit a security group]] article to ensure that:&lt;br /&gt;
&lt;br /&gt;
* Your instance has an IP address that you can reach, such as a public IP address or an IP address you can reach through a virtual firewall appliance.&lt;br /&gt;
&lt;br /&gt;
* Your instance is in a security group that allows SSH from your location.&lt;br /&gt;
&lt;br /&gt;
Once that is completed, open your SSH application of choice. In this article we&#039;ll be using PuTTY, though most SSH applications will work.&lt;br /&gt;
&lt;br /&gt;
In PuTTY, enter your Host Name in this format:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;osname@IPADDRESS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
For example, if connecting to an Ubuntu instance with a public IP address of 171.85.90.100, the PuTTY hostname would look like: &#039;&#039;&#039;ubuntu@171.85.95.100&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_HostName.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to the &#039;Connections&#039;, &#039;SSH&#039;, &#039;Auth&#039;, &#039;Credentials&#039; menu. Then, in the &#039;Private Key for authentication&#039; field, choose &#039;Browse&#039; and locate the .ppk file that contains your private key.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_Credentials.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click &#039;Open&#039; to start the connect. If prompted to accept the instance&#039;s server host key, click &#039;Accept&#039;. You should be prompted for the private key password you set on your private key. Enter the password to complete the login.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Join_an_virtual_machine_to_a_network&amp;diff=228</id>
		<title>Join an virtual machine to a network</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Join_an_virtual_machine_to_a_network&amp;diff=228"/>
		<updated>2024-10-10T16:16:09Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Join an virtual machine to a network to Join an virtual machine to a network (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Join an virtual machine to a network (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Join_an_virtual_machine_to_a_network_(Advanced_Console)&amp;diff=227</id>
		<title>Join an virtual machine to a network (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Join_an_virtual_machine_to_a_network_(Advanced_Console)&amp;diff=227"/>
		<updated>2024-10-10T16:16:09Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Join an virtual machine to a network to Join an virtual machine to a network (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you join a virtual machine/instance to a network without pre-creating a network port.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the [[Create a network port]] article, we detailed how to provision a network port in advance of creating a virtual machine/instance. This method works for private networks, but does not work for shared networks, like the Public Internet network. Also, sometimes there is no need to provision a network port in advance, even for private networks. In those cases, a virtual machine/instance can simply be joined directly to an available network. In these cases, the DataTenant cloud will create a port for you with a randomly IP address from that network.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: Be very cautious when assigning a public IP address to your virtual machine! An instance with a public IP address assigned will be accessible to everyone on the internet. Please be sure you have carefully crafted the security group in use on this port and/or instance to prevent unauthorized access!&lt;br /&gt;
&lt;br /&gt;
== Join your instance to a network  ==&lt;br /&gt;
Begin creating your instance according to the [[Create a virtual machine]] article.&lt;br /&gt;
&lt;br /&gt;
When you reach the Networking step, select the network you want to connect to.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_NetworkSelect.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Proceed on through the rest of the instance creation process.&lt;br /&gt;
&lt;br /&gt;
When you are done, the DataTenant cloud will select an available IP address at random, create a port for you, and assign it to your instance.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_or_edit_a_security_group&amp;diff=226</id>
		<title>Create or edit a security group</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_or_edit_a_security_group&amp;diff=226"/>
		<updated>2024-10-10T16:15:41Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create or edit a security group to Create or edit a security group (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Create or edit a security group (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_or_edit_a_security_group_(Advanced_Console)&amp;diff=225</id>
		<title>Create or edit a security group (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_or_edit_a_security_group_(Advanced_Console)&amp;diff=225"/>
		<updated>2024-10-10T16:15:41Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create or edit a security group to Create or edit a security group (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you create or edit network security groups.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Security groups are like firewall rules that can be assigned to one or more network interfaces. A security group contains a list of allowed network ports, and any port not listed in the security group will be denied by default. Every network interface/port in must be assigned at least one security group, unless port security is intentionally disabled on that port.&lt;br /&gt;
&lt;br /&gt;
Every project contains a &#039;default&#039; security group. This group is set to allow all IPv4 and IPv6 traffic in the outbound (egress) direction, but denies all IPv4 and IPv6 traffic in the inbound direction. If you set up your first VM and find you can&#039;t ping it, this may very well be why! Following the steps below will allow you to create a new security group for your VM (or edit an existing security group).&lt;br /&gt;
&lt;br /&gt;
== Create and edit a security group ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Network, Security Groups menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_SecurityGroups.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To edit an existing security group, choose &#039;Manage Rules&#039; for the group you want to edit. Otherwise, to create a new security group, choose &#039;Create Security Group&#039; and give your new security group a unique name.&lt;br /&gt;
&lt;br /&gt;
In the &#039;Manage Security Group Rules&#039; window, you can add or delete any rules you would like to control the flow of network traffic to/from your network interfaces. For example, a generic &#039;Web Server&#039; security group might need to allow inbound HTTP and HTTPS traffic. To do this, click &#039;Add Rule&#039; and select &#039;HTTP&#039; from &#039;Rule&#039; dropdown.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AddRule.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;CIDR&#039; field, you can choose to only allow this new rule to be valid when coming from a certain IP address or range. For example, a user could choose to only allow HTTP traffic if the source IP address is in the &#039;192.168.0.0/24&#039; network. Leaving the default &#039;0.0.0.0/0&#039; in the &#039;CIDR&#039; field will allow traffic from any IP address.&lt;br /&gt;
&lt;br /&gt;
Click &#039;Add&#039; to save the rule.&lt;br /&gt;
&lt;br /&gt;
A fully completed ruleset for a public web server might look something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Ruleset.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this example, the VM using this security group would be able to send all types of traffic inbound, and would allow inbound HTTP, HTTPS, and ICMP traffic from any source. All other inbound traffic would be denied.&lt;br /&gt;
&lt;br /&gt;
For more information about how to change security groups on existing VMs, please review the [[Changing security groups]] article.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_volume&amp;diff=224</id>
		<title>Create a volume</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_volume&amp;diff=224"/>
		<updated>2024-10-10T16:15:33Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a volume to Create a volume (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Create a volume (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_volume_(Advanced_Console)&amp;diff=223</id>
		<title>Create a volume (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_volume_(Advanced_Console)&amp;diff=223"/>
		<updated>2024-10-10T16:15:33Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a volume to Create a volume (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you create a new block storage volume.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Volumes are the &#039;storage disks&#039; in the DataTenant Cloud, like VMDKs in VMWare ESX or VHDs in Microsoft Hyper-V. If you already have a virtual machine running, you can create blank volumes and attach them to your VM for storage using this article. Otherwise, you can also create volumes from an image, which will contain the operating system you selected for a new VM.&lt;br /&gt;
&lt;br /&gt;
== Create a volume ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Volumes, Volumes menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Volumes.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click &#039;Create Volume&#039;. Enter a unique volume name. For example, a volume for a new Windows web server might be called &#039;WinWeb01_C&#039;.&lt;br /&gt;
&lt;br /&gt;
If you want to create a blank volume (for additional storage on a VM, for example), leave the &#039;Volume Source&#039; dropdown set to the default. Otherwise, select &#039;Image&#039; in the dropdown and then select the OS you want to clone from the resulting &#039;Use image as a source&#039; dropdown.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Volume1.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Type&#039; dropdown, you can choose one of four storage tiers: Standard HDD, Ultra HDD, Standard SSD, and Ultra SSD. If you need help deciding which tier is best for your needs, please review the [[Understanding storage tiers]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Size&#039; field, enter the size you&#039;d like your new volume to be. When you&#039;re done, click &#039;Create Volume&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Volume2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Your new volume will now provision. This process can take anywhere from a few seconds (for a blank volume) to up to several minutes (for a large OS, like a Windows Server OS). Once the volume shows as &#039;Available&#039;, you&#039;ll be free to use the volume as a boot source for a new VM or to attach it to an existing VM. For more information on how to use your new volume, review the [[Create a virtual machine]] article or the [[Attaching a volume to an existing virtual machine]] article.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_virtual_machine&amp;diff=222</id>
		<title>Create a virtual machine</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_virtual_machine&amp;diff=222"/>
		<updated>2024-10-10T16:15:21Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a virtual machine to Create a virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Create a virtual machine (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_virtual_machine_(Advanced_Console)&amp;diff=221</id>
		<title>Create a virtual machine (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_virtual_machine_(Advanced_Console)&amp;diff=221"/>
		<updated>2024-10-10T16:15:21Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a virtual machine to Create a virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you create a new virtual machine (or instance).&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the DataTenant Cloud, a virtual machine is called an &#039;instance&#039;. This article will guide you on creating a new instance.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
In order to have a successful instance build, you&#039;ll want to make sure you have a few things squared away first.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;Ensure you have a keypair available to use. Your keypair will be used to grant you access to the virtual machine after it&#039;s been created.&amp;lt;/strong&amp;gt;&lt;br /&gt;
** If you need help creating a keypair, please review our [[Create a keypair]] article.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;Ensure you have an acceptable security group created for your network purposes.&amp;lt;/strong&amp;gt;&lt;br /&gt;
** If you want, you can accept the &#039;default&#039; security group to get started and edit this later. But, best practice will always be to ensure you have a security group set up in advance and select it during provisioning. For help doing this, please review our [[Create or edit a security group]] article.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;Create a boot volume.&amp;lt;/strong&amp;gt;&lt;br /&gt;
** You must provision a boot volume in advance or your instance creation will fail. To do this, please review our [[Create a volume]] article.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;Create a network port (optional)&amp;lt;/strong&amp;gt;&lt;br /&gt;
** You can opt to have a network port auto-created during the instance creation process, but the IP address for the instance will be assigned at random. If you want to set a static IP address, please follow our article [[Create a network port]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Create a virtual machine (instance) ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click &#039;Launch Instance&#039;.&lt;br /&gt;
&lt;br /&gt;
Give your new instance a unique name. For instances other than virtual appliances, the name you provide here will be set as the hostname in the resulting instance OS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instance1.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on &#039;Source&#039;. In the &#039;Select Boot Source&#039; menu, choose &#039;Volume&#039;. Select the volume you provisioned earlier.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instance2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on &#039;Flavor&#039;. Choose whichever flavor will work best for your new instance. If you need help choosing, please review our [[Understanding flavors]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances3.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For networking, you have two options:&lt;br /&gt;
&lt;br /&gt;
* If you &amp;lt;strong&amp;gt;did not&amp;lt;/strong&amp;gt; provision a network port in advance, click &#039;Networks&#039; and choose the network you&#039;d like your new instance to be connected to. This is how you can directly assign a public IP address, for example. If you choose this option, a network port will be auto-created for you with a random IP address from that network. Please review the [[Join an virtual machine to a network]] article for more information.&lt;br /&gt;
&lt;br /&gt;
* If you &amp;lt;strong&amp;gt;did&amp;lt;/strong&amp;gt; provision a network port in advance, click &#039;Network Ports&#039; and select the port you created. You can still assign a public IP address for this instance later if you choose this option. Follow the [[Associate a floating IP]] article for more information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instance4.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on &#039;Security Groups&#039;. You can leave the security group set to &#039;default&#039; if you want, but be warned the unmodified default security denies any inbound traffic, so you won&#039;t be able to remotely connect (or even ping) your instance with this group unless you modify the security group. If you created a security group more fitting to this instance, select it here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instance5.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click on &#039;Key Pair&#039;. Select your keypair.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instance6.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For the majority of users, the remaining options (Configuration, Server Groups, Scheduler Hints, etc. ) are unnecessary. Once you have defined your name, boot volume, flavor, network, security group, and key pair, you are ready to go. Simply click &#039;Launch Instance&#039; and your virtual machine will be created!&lt;br /&gt;
&lt;br /&gt;
The instance creation process should take less than a minute, but Windows instances may take a few minutes to complete their setup process, rebooting several times as new virtual hardware is installed.&lt;br /&gt;
&lt;br /&gt;
For assistance in logging in to your new virtual machine, please review our [[Logging in to a new virtual machine]] article.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_network_port&amp;diff=220</id>
		<title>Create a network port</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_network_port&amp;diff=220"/>
		<updated>2024-10-10T16:15:09Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a network port to Create a network port (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Create a network port (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_network_port_(Advanced_Console)&amp;diff=219</id>
		<title>Create a network port (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_network_port_(Advanced_Console)&amp;diff=219"/>
		<updated>2024-10-10T16:15:09Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a network port to Create a network port (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you create a static network port.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Network ports are virtual interfaces that can be connected to virtual machines or virtual routers. The DataTenant Cloud can auto-create these network ports for you when you create a new virtual machine or virtual router, but if you prefer to pre-create your own network ports with static IP addresses, this article will illustrate how to do that.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: Static network ports can only be created on private networks in your project. Static ports cannot be pre-provisioned in shared networks, like the Public Internet network. In order to join a virtual machine/instance directly to the public internet, please review the [[Join an virtual machine to a network]] article.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Create a network port  ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Network, Networks menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Networks.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be provided a list of networks that are available in your project. Click on the network you want to make your port in. &lt;br /&gt;
&lt;br /&gt;
Click on the &#039;Ports&#039; tab.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_NetworkPorts.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click &#039;Create Port&#039;.&lt;br /&gt;
&lt;br /&gt;
Give your network port a unique name. For example, a new web server network port might have a name like &#039;PubWeb_01_External&#039;. In the &#039;Specify IP address or subnet&#039; dropdown, choose &#039;Fixed IP Address&#039;. Enter the static IP address you want to be bound to this port.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_NetworkPort1.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click the &#039;Security Groups&#039; tab and select the security group you&#039;d like this new port to be a member of. If you need help creating or editing a security group for this port, please review the [[Create or edit a security group]] article.&lt;br /&gt;
&lt;br /&gt;
When you&#039;ve set the security groups, click &#039;Create&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_NetworkPort2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Your new network port is now created and available to select when provisioning a new virtual machine (or for attaching to an existing virtual machine). If you need help attaching a network port to an existing virtual machine, please review the [[Attach a network port to a virtual machine]] article.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_keypair&amp;diff=218</id>
		<title>Create a keypair</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_keypair&amp;diff=218"/>
		<updated>2024-10-10T16:14:57Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a keypair to Create a keypair (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Create a keypair (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_keypair_(Advanced_Console)&amp;diff=217</id>
		<title>Create a keypair (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Create_a_keypair_(Advanced_Console)&amp;diff=217"/>
		<updated>2024-10-10T16:14:57Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Create a keypair to Create a keypair (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article will help you create a keypair.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Keypairs are used for authentication to cloud VMs. A keypair consists of two parts, a public key and a private key, and are specific to a single user. The following steps will explain  how to create a single keypair that can be used for authentication against new Windows and Linux cloud VMs. If you follow this process you will end up with three files: a public key, a private key for Linux VMs, and a private key for Windows VMs.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: While keypairs are not used for Virtual Appliances, you will still be asked to select a keypair as part of the virtual machine creation process.&lt;br /&gt;
&lt;br /&gt;
== Generate a keypair ==&lt;br /&gt;
Begin by downloading [https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html PuTTY] and installing it onto a Windows or Mac. This will automatically install PuTTYgen, which is a tool for creating keypairs. Open PuTTYgen, and click the &#039;Generate&#039; option.&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_Generate.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PuTTYgen will prompt you to move your mouse around the screen to provide randomness to the software, allowing for the creation of a truly unique key. When you&#039;re done, your public key will be displayed in the &#039;Key&#039; window. Copy and paste it somewhere safe, like in a text file on your local PC or in your preferred password management solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_PubKey.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter a password of your choosing in the &#039;Key Passphrase&#039; window and again in the &#039;Confirm passphrase&#039; window. Select &#039;EdDSA&#039; encryption in the &#039;Parameters&#039; window, and click &#039;Save private key&#039;. This will prompt you to save a .ppk file somewhere to your computer, and that file will contain your encrypted private key. &amp;lt;strong&amp;gt;This copy of your private key will be used to perform secure logins to cloud Linux VMs.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_PrivKey1.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Conversions&#039; menu, select &#039;Export OpenSSH Key&#039;. Save the file somewhere to your local computer. &amp;lt;strong&amp;gt;This is a copy of your private key that will be used to encrypt Administrator passwords on cloud Windows VMs.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Putty_PrivKey2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Import your keypair ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Key Pairs menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_KeyPair.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select the option to &#039;Import Public Key&#039;. Give your keypair a unique name, and select &#039;SSH Key&#039; as the Key Type. Copy and paste the contents of the public key file you created earlier into the &#039;Public Key&#039; window (you can also select the public key file using the &#039;Choose File&#039; button if you prefer). Click &#039;Import Public Key&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_ImportKeyPair.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You now have everything you need for secure authentication to the DataTenant Cloud! If you need help using these keys, please review the [[Logging in to a new virtual machine]] article.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Changing_security_groups&amp;diff=216</id>
		<title>Changing security groups</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Changing_security_groups&amp;diff=216"/>
		<updated>2024-10-10T16:14:46Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Changing security groups to Changing security groups (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Changing security groups (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Changing_security_groups_(Advanced_Console)&amp;diff=215</id>
		<title>Changing security groups (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Changing_security_groups_(Advanced_Console)&amp;diff=215"/>
		<updated>2024-10-10T16:14:46Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Changing security groups to Changing security groups (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This article will explain how to change an existing virtual machine/instance&#039;s or network port&#039;s security group.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Sometimes you may want to change which network security group a virtual machine/instance belongs to, or change an individual network port&#039;s security group membership. Changing security group membership will change what ports an instance can communicate over.&lt;br /&gt;
&lt;br /&gt;
== Change an instance security group ==&lt;br /&gt;
If an instance only has a single network port, or if you want all network ports connected to an instance to be in the same security group, you can change the security group easily with these steps.&lt;br /&gt;
&lt;br /&gt;
First, login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Actions&#039; menu for your instance, choose &#039;Edit Security Groups&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_EditSecurityGroups.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the box that appears, add/remove security group memberships to fit your needs and choose &#039;Save&#039; when complete.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_EditSecurityGroups2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Change a network port security group ==&lt;br /&gt;
If your instance has multiple network ports, and you want different ports to have different security postures, you can edit each network port&#039;s security group membership individually.&lt;br /&gt;
&lt;br /&gt;
To begin, follow the steps from the previous section, but in the &#039;Actions&#039; menu, choose &#039;Edit Port Security Groups&#039; instead.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_EditSecurityGroups3.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Interfaces&#039; screen, you will see all of the network ports attached to your instance. Click on &#039;Edit Security Groups&#039; for any available network port to be brought to a screen where you can edit the port&#039;s security group membership. Save when completed.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Changing_flavors&amp;diff=214</id>
		<title>Changing flavors</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Changing_flavors&amp;diff=214"/>
		<updated>2024-10-10T16:12:46Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Changing flavors to Changing flavors (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Changing flavors (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Changing_flavors_(Advanced_Console)&amp;diff=213</id>
		<title>Changing flavors (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Changing_flavors_(Advanced_Console)&amp;diff=213"/>
		<updated>2024-10-10T16:12:46Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Changing flavors to Changing flavors (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;This article explains how to change what flavor a virtual machine/instance is assigned.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In our [[Understanding flavors]] article, we explain what flavors are and why they are important. If you wish to change which flavor your virtual machine/instance is assigned (and therefore change its underlying virtual hardware and/or compute priority), please follow these steps.&lt;br /&gt;
&lt;br /&gt;
== Change your instance&#039;s flavor ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Actions&#039; menu for your instance, choose &#039;Resize Instance&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Resize.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the Resize Instance menu, choose the new flavor you&#039;d like to change your instance to. Select &#039;Resize&#039;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: Choosing to resize your instance will result in a reboot! Do not click &#039;resize&#039; until you are prepared to let your instance reboot.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Resize2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will see the &#039;Task&#039; column now display stages of resizing. When they are complete, you will see a &#039;Confirm&#039; option in the &#039;Actions&#039; column. &#039;&#039;&#039;You must click &#039;Confirm&#039; to complete the resize operation!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Resize3.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once the resize operation is complete, your instance will show that it has the correct virtual hardware specifications and is operating on the correct tier as specified in the flavor.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Attaching_a_volume_to_an_existing_virtual_machine&amp;diff=212</id>
		<title>Attaching a volume to an existing virtual machine</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Attaching_a_volume_to_an_existing_virtual_machine&amp;diff=212"/>
		<updated>2024-10-10T16:12:34Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Attaching a volume to an existing virtual machine to Attaching a volume to an existing virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Attaching a volume to an existing virtual machine (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Attaching_a_volume_to_an_existing_virtual_machine_(Advanced_Console)&amp;diff=211</id>
		<title>Attaching a volume to an existing virtual machine (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Attaching_a_volume_to_an_existing_virtual_machine_(Advanced_Console)&amp;diff=211"/>
		<updated>2024-10-10T16:12:34Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Attaching a volume to an existing virtual machine to Attaching a volume to an existing virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This article will explain how to attach a volume to an existing virtual machine/instance&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Every virtual machine/instance will be provisioned with a boot volume, but sometimes you will want to add additional virtual disks/volumes to your instance. To do this, begin by following the steps in the article [[Create a volume]] to create the volume you will attach to your existing instance.&lt;br /&gt;
&lt;br /&gt;
== Attach your new volume ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Actions&#039; menu for your instance, choose &#039;Attach Volume&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AttachVolume.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the box that appears, choose the volume you want to attach and click &#039;Attach Volume&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AttachVolume2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The new volume/virtual disk should now be visible to the guest OS.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Attach_a_network_port_to_a_virtual_machine&amp;diff=210</id>
		<title>Attach a network port to a virtual machine</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Attach_a_network_port_to_a_virtual_machine&amp;diff=210"/>
		<updated>2024-10-10T16:12:16Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Attach a network port to a virtual machine to Attach a network port to a virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Attach a network port to a virtual machine (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Attach_a_network_port_to_a_virtual_machine_(Advanced_Console)&amp;diff=209</id>
		<title>Attach a network port to a virtual machine (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Attach_a_network_port_to_a_virtual_machine_(Advanced_Console)&amp;diff=209"/>
		<updated>2024-10-10T16:12:16Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Attach a network port to a virtual machine to Attach a network port to a virtual machine (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This article will instruct you on how to create and add additional network interfaces to your existing virtual machine/instances.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Every new virtual machine/instance will provision with at least one network interface/port, but in some cases you may want to add additional network interfaces linked to different networks and/or with different security group memberships. In order to do this, begin by creating a new network port through the steps in the [[Create a network port]] article.&lt;br /&gt;
&lt;br /&gt;
== Attach your new network port ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Actions&#039; menu for your instance, choose &#039;Attach interface&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AttachInterface.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the box that appears, choose &#039;by Port&#039; in the &#039;The way to specify an interface&#039; dropdown. Then, select the Port you created earlier in the &#039;Port&#039; dropdown. Click &#039;Attach Interface&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AttachInterface2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you did not pre-create a network port, you can also use this menu to create a new port by choosing &#039;by Network (and IP address)&#039; and then selecting the Network you want to provision in and specifying a fixed IP address in the available field. The end result is the same.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Your new network interface should now be visible in the guest OS.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Associate_a_floating_IP&amp;diff=208</id>
		<title>Associate a floating IP</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Associate_a_floating_IP&amp;diff=208"/>
		<updated>2024-10-10T16:11:54Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Associate a floating IP to Associate a floating IP (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Associate a floating IP (Advanced Console)]]&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Associate_a_floating_IP_(Advanced_Console)&amp;diff=207</id>
		<title>Associate a floating IP (Advanced Console)</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Associate_a_floating_IP_(Advanced_Console)&amp;diff=207"/>
		<updated>2024-10-10T16:11:54Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin moved page Associate a floating IP to Associate a floating IP (Advanced Console)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This article explains how to associate a floating IP address to an existing virtual machine/instance.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The DataTenant cloud has the option to bind &#039;floating IP addresses&#039; to virtual machines/instances to allow them to communicate across &#039;external networks&#039; (like the public internet, for example). Floating IPs can have their bindings to network ports added or removed at will, and when in use, route traffic like in the style of [https://www.comptia.org/content/guides/what-is-network-address-translation Network Address Translation (i.e. NAT)].&lt;br /&gt;
&lt;br /&gt;
The most common usage for floating IP addresses is to bind a public IP address to an instance in your environment that you want to be accessible from the WAN (like a web server, for example). To do this, follow the steps in this article.&lt;br /&gt;
&lt;br /&gt;
== Associate a floating IP address ==&lt;br /&gt;
Login to the [https://cloud.datatenant.com DataTenant Cloud]. Navigate to the Project, Compute, Instances menu.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_Instances.png|border|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the &#039;Actions&#039; menu for your instance, choose &#039;Associate Floating IP&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AssociateIP.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select one of the available IP addresses from the list. Click &#039;Associate&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Cloud_AssociateIP2.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;NOTE: Be very cautious when associating a public IP address to your virtual machine! An instance with a public IP associated will be accessible to everyone on the internet. Please be sure you have carefully crafted the security group in use on this port and/or instance to prevent unauthorized access!&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
When the association is complete, you will see two IP addresses listed in the IP Address column of your instance list. The first IP address is the private IP address assigned directly to the instance. This IP address is what will be configured inside the guest OS. The second IP address is the associated IP address, which the DataTenant Cloud will perform [https://www.comptia.org/content/guides/what-is-network-address-translation Network Address Translation]  on to allow your instance to send/receive traffic from that second IP address as well.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=206</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=206"/>
		<updated>2024-10-09T19:23:54Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Security Group&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Each virtual network interface in the DataTenant Public Cloud has a set of ACLs applied to it by default that act as a sort of mini-firewall. These ACL sets are called &#039;security groups&#039;, and the default security group only allows outbound network traffic, while denying all inbound network traffic. So, if you want to be able to control your virtual machine through SSH, RDP, VNC, etc. or allow any other inbound communication with your virtual machine, you&#039;ll need to create a new security group for this purpose.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top menu, select &#039;Security Groups&#039;. At the bottom of that menu, choose &#039;Create Security Group&#039;.&lt;br /&gt;
#*[[File:SG1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like this security group to be used in. For more information about regions, please review our [[Regions]] article. Enter a name for your security group and select &#039;Create Security Group&#039;.&lt;br /&gt;
#*[[File:SG2.png|border|600px]]&lt;br /&gt;
# Select your newly created security group from the list.&lt;br /&gt;
# By default, all egress traffic will be allowed. To create new rules, select &#039;Add rule&#039;. In the box that appears, you can specify what sort of traffic you want to allow. Anything that isn&#039;t explicitly allowed is denied.&lt;br /&gt;
## In the Rule menu, you can either select &#039;All Protocols&#039; to allow TCP, UDP, and ICMP, or you can choose &#039;Custom Protocol&#039; to choose from one of these options.&lt;br /&gt;
## In the description field, you can optionally enter a brief description of what this rule does.&lt;br /&gt;
## In the Open Port menu, you select whether you&#039;d like to allow traffic over a single port, a range of ports, or all ports. If you select Port or Port Range, you can either the specific port(s) in the field that appears.&lt;br /&gt;
## In the Remote menu, you can choose whether you&#039;d like this rule to be applicable only to a specific group of endpoints or all endpoints. If you choose &#039;CIDR&#039;, you can enter a network subnet in the field that appears. This rule will only apply to endpoints coming from that subnet. To allow all traffic from all sources, enter 0.0.0.0/0. If you choose &#039;Security Group&#039;, you can select a different security group in your project, and this rule will only apply to interfaces in that security group.&lt;br /&gt;
## In the EtherType menu, you can select IPv4 or IPv6 for this rule.&lt;br /&gt;
#*[[File:SG3.png|border|600px]]&lt;br /&gt;
# When you are done, select &#039;Add Rule&#039;. You can now apply this rule to any virtual interface in your project and the rule will be enforced.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# A list of images will be available for you to select from in the &#039;Images&#039; menu. Select one, or if you&#039;re wanting to create and select a custom image, please review our [[Images]] article.&lt;br /&gt;
# Performance tiers and hardware specifications are available to choose from in the &#039;Hardware&#039; menu. Select the one that corresponds to what you&#039;d like for your virtual machine. If you&#039;re unsure about the different performance tiers, please review our [[Compute Tiers]] article.&lt;br /&gt;
# A system disk/root volume will automatically be populated in the &#039;Volumes&#039; menu. You can select a performance tier from the &#039;Type&#039; menu&#039;, and input whatever size you&#039;d like in the &#039;Size&#039; field. For more information about disk performance tiers, please review our [[Storage Tiers]] article. You can also add additional volumes here, or you can opt to add them at any later time.&lt;br /&gt;
# In the Network menu, de-select the &#039;Public Network&#039; option and select the &#039;Private Network&#039; option.&lt;br /&gt;
## A &#039;Private Network&#039; menu will appear. Choose from your available private networks. If there are no networks available to choose from, ensure you are creating your virtual machine in the correct region. You can also select &#039;Create Network&#039; to create a virtual private network from here.&lt;br /&gt;
# If you are creating a Linux virtual machine, select one of your available keypairs in the Authentication menu. This will inject your public key into the Linux VM during creation. If you are creating a non-Linux VM, simply select &#039;No SSH Key&#039;.&lt;br /&gt;
##  If there are no keypairs available to choose from, ensure your keypair was created in the same region as the VM you are trying to create.&lt;br /&gt;
# You can skip the &#039;Cloud config&#039; menu unless you have unique customization needs. You can read more about those in our [[Cloud configs]] article.&lt;br /&gt;
# If you created specific security group(s) earlier, select &#039;Add Security Group&#039; in the &#039;Security Groups&#039; menu and choose the one that you&#039;d like to be applied to this server. If you don&#039;t choose a security group, the default security group will be applied, which will allow all outbound traffic but deny all inbound traffic.&lt;br /&gt;
# Finally, give your server a name and select &#039;Create Server&#039;. Your server will be renamed in the guest OS to match whatever name you provide here. Once you click &#039;Create Server&#039;, you will be redirected back to the Server menu, where it will take a few minutes for your virtual server to fully provision.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=205</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=205"/>
		<updated>2024-10-09T19:18:32Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Security Group&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Each virtual network interface in the DataTenant Public Cloud has a set of ACLs applied to it by default that act as a sort of mini-firewall. These ACL sets are called &#039;security groups&#039;, and the default security group only allows outbound network traffic, while denying all inbound network traffic. So, if you want to be able to control your virtual machine through SSH, RDP, VNC, etc. or allow any other inbound communication with your virtual machine, you&#039;ll need to create a new security group for this purpose.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top menu, select &#039;Security Groups&#039;. At the bottom of that menu, choose &#039;Create Security Group&#039;.&lt;br /&gt;
#*[[File:SG1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like this security group to be used in. For more information about regions, please review our [[Regions]] article. Enter a name for your security group and select &#039;Create Security Group&#039;.&lt;br /&gt;
#*[[File:SG2.png|border|600px]]&lt;br /&gt;
# Select your newly created security group from the list.&lt;br /&gt;
# By default, all egress traffic will be allowed. To create new rules, select &#039;Add rule&#039;. In the box that appears, you can specify what sort of traffic you want to allow. Anything that isn&#039;t explicitly allowed is denied.&lt;br /&gt;
## In the Rule menu, you can either select &#039;All Protocols&#039; to allow TCP, UDP, and ICMP, or you can choose &#039;Custom Protocol&#039; to choose from one of these options.&lt;br /&gt;
## In the description field, you can optionally enter a brief description of what this rule does.&lt;br /&gt;
## In the Open Port menu, you select whether you&#039;d like to allow traffic over a single port, a range of ports, or all ports. If you select Port or Port Range, you can either the specific port(s) in the field that appears.&lt;br /&gt;
## In the Remote menu, you can choose whether you&#039;d like this rule to be applicable only to a specific group of endpoints or all endpoints. If you choose &#039;CIDR&#039;, you can enter a network subnet in the field that appears. This rule will only apply to endpoints coming from that subnet. To allow all traffic from all sources, enter 0.0.0.0/0. If you choose &#039;Security Group&#039;, you can select a different security group in your project, and this rule will only apply to interfaces in that security group.&lt;br /&gt;
## In the EtherType menu, you can select IPv4 or IPv6 for this rule.&lt;br /&gt;
#*[[File:SG3.png|border|600px]]&lt;br /&gt;
# When you are done, select &#039;Add Rule&#039;. You can now apply this rule to any virtual interface in your project and the rule will be enforced.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# A list of images will be available for you to select from in the &#039;Images&#039; menu. Select one, or if you&#039;re wanting to create and select a custom image, please review our [[Images]] article.&lt;br /&gt;
# Performance tiers and hardware specifications are available to choose from in the &#039;Hardware&#039; menu. Select the one that corresponds to what you&#039;d like for your virtual machine. If you&#039;re unsure about the different performance tiers, please review our [[Compute Tiers]] article.&lt;br /&gt;
# A system disk/root volume will automatically be populated in the &#039;Volumes&#039; menu. You can select a performance tier from the &#039;Type&#039; menu&#039;, and input whatever size you&#039;d like in the &#039;Size&#039; field. For more information about disk performance tiers, please review our [[Storage Tiers]] article. You can also add additional volumes here, or you can opt to add them at any later time.&lt;br /&gt;
# In the Network menu, select the &#039;Private Network&#039; option.&lt;br /&gt;
## A &#039;Private Network&#039; menu will appear. Choose from your available private networks. If there are no networks available to choose from, ensure you are creating your virtual machine in the correct region. You can also select &#039;Create Network&#039; to create a virtual private network from here.&lt;br /&gt;
# If you are creating a Linux virtual machine, select one of your available keypairs in the Authentication menu. This will inject your public key into the Linux VM during creation. If you are creating a non-Linux VM, simply select &#039;No SSH Key&#039;.&lt;br /&gt;
##  If there are no keypairs available to choose from, ensure your keypair was created in the same region as the VM you are trying to create.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=File:SG3.png&amp;diff=204</id>
		<title>File:SG3.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=File:SG3.png&amp;diff=204"/>
		<updated>2024-10-09T19:18:15Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=203</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=203"/>
		<updated>2024-10-09T19:16:43Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Security Group&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Each virtual network interface in the DataTenant Public Cloud has a set of ACLs applied to it by default that act as a sort of mini-firewall. These ACL sets are called &#039;security groups&#039;, and the default security group only allows outbound network traffic, while denying all inbound network traffic. So, if you want to be able to control your virtual machine through SSH, RDP, VNC, etc. or allow any other inbound communication with your virtual machine, you&#039;ll need to create a new security group for this purpose.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top menu, select &#039;Security Groups&#039;. At the bottom of that menu, choose &#039;Create Security Group&#039;.&lt;br /&gt;
#*[[File:SG1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like this security group to be used in. For more information about regions, please review our [[Regions]] article. Enter a name for your security group and select &#039;Create Security Group&#039;.&lt;br /&gt;
#*[[File:SG2.png|border|600px]]&lt;br /&gt;
# Select your newly created security group from the list.&lt;br /&gt;
# By default, all egress traffic will be allowed. To create new rules, select &#039;Add rule&#039;. In the box that appears, you can specify what sort of traffic you want to allow. Anything that isn&#039;t explicitly allowed is denied.&lt;br /&gt;
## In the Rule menu, you can either select &#039;All Protocols&#039; to allow TCP, UDP, and ICMP, or you can choose &#039;Custom Protocol&#039; to choose from one of these options.&lt;br /&gt;
## In the description field, you can optionally enter a brief description of what this rule does.&lt;br /&gt;
## In the Open Port menu, you select whether you&#039;d like to allow traffic over a single port, a range of ports, or all ports. If you select Port or Port Range, you can either the specific port(s) in the field that appears.&lt;br /&gt;
## In the Remote menu, you can choose whether you&#039;d like this rule to be applicable only to a specific group of endpoints or all endpoints. If you choose &#039;CIDR&#039;, you can enter a network subnet in the field that appears. This rule will only apply to endpoints coming from that subnet. To allow all traffic from all sources, enter 0.0.0.0/0. If you choose &#039;Security Group&#039;, you can select a different security group in your project, and this rule will only apply to interfaces in that security group.&lt;br /&gt;
## In the EtherType menu, you can select IPv4 or IPv6 for this rule.&lt;br /&gt;
# When you are done, select &#039;Add Rule&#039;. You can now apply this rule to any virtual interface in your project and the rule will be enforced.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# A list of images will be available for you to select from in the &#039;Images&#039; menu. Select one, or if you&#039;re wanting to create and select a custom image, please review our [[Images]] article.&lt;br /&gt;
# Performance tiers and hardware specifications are available to choose from in the &#039;Hardware&#039; menu. Select the one that corresponds to what you&#039;d like for your virtual machine. If you&#039;re unsure about the different performance tiers, please review our [[Compute Tiers]] article.&lt;br /&gt;
# A system disk/root volume will automatically be populated in the &#039;Volumes&#039; menu. You can select a performance tier from the &#039;Type&#039; menu&#039;, and input whatever size you&#039;d like in the &#039;Size&#039; field. For more information about disk performance tiers, please review our [[Storage Tiers]] article. You can also add additional volumes here, or you can opt to add them at any later time.&lt;br /&gt;
# In the Network menu, select the &#039;Private Network&#039; option.&lt;br /&gt;
## A &#039;Private Network&#039; menu will appear. Choose from your available private networks. If there are no networks available to choose from, ensure you are creating your virtual machine in the correct region. You can also select &#039;Create Network&#039; to create a virtual private network from here.&lt;br /&gt;
# If you are creating a Linux virtual machine, select one of your available keypairs in the Authentication menu. This will inject your public key into the Linux VM during creation. If you are creating a non-Linux VM, simply select &#039;No SSH Key&#039;.&lt;br /&gt;
##  If there are no keypairs available to choose from, ensure your keypair was created in the same region as the VM you are trying to create.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=File:SG2.png&amp;diff=202</id>
		<title>File:SG2.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=File:SG2.png&amp;diff=202"/>
		<updated>2024-10-09T19:06:34Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=File:SG1.png&amp;diff=201</id>
		<title>File:SG1.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=File:SG1.png&amp;diff=201"/>
		<updated>2024-10-09T19:05:04Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: Dtadmin uploaded a new version of File:SG1.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=File:SG1.png&amp;diff=200</id>
		<title>File:SG1.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=File:SG1.png&amp;diff=200"/>
		<updated>2024-10-09T19:02:21Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=199</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=199"/>
		<updated>2024-10-07T20:53:49Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Security Group&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Each virtual network interface in the DataTenant Public Cloud has a set of ACLs applied to it by default that act as a sort of mini-firewall. These ACL sets are called &#039;security groups&#039;, and the default security group only allows outbound network traffic, while denying all inbound network traffic. So, if you want to be able to control your virtual machine through SSH, RDP, VNC, etc. or allow any other inbound communication with your virtual machine, you&#039;ll need to create a new security group for this purpose.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top menu, select &#039;Security Groups&#039;. At the bottom of that menu, choose &#039;Create Security Group&#039;.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# A list of images will be available for you to select from in the &#039;Images&#039; menu. Select one, or if you&#039;re wanting to create and select a custom image, please review our [[Images]] article.&lt;br /&gt;
# Performance tiers and hardware specifications are available to choose from in the &#039;Hardware&#039; menu. Select the one that corresponds to what you&#039;d like for your virtual machine. If you&#039;re unsure about the different performance tiers, please review our [[Compute Tiers]] article.&lt;br /&gt;
# A system disk/root volume will automatically be populated in the &#039;Volumes&#039; menu. You can select a performance tier from the &#039;Type&#039; menu&#039;, and input whatever size you&#039;d like in the &#039;Size&#039; field. For more information about disk performance tiers, please review our [[Storage Tiers]] article. You can also add additional volumes here, or you can opt to add them at any later time.&lt;br /&gt;
# In the Network menu, select the &#039;Private Network&#039; option.&lt;br /&gt;
## A &#039;Private Network&#039; menu will appear. Choose from your available private networks. If there are no networks available to choose from, ensure you are creating your virtual machine in the correct region. You can also select &#039;Create Network&#039; to create a virtual private network from here.&lt;br /&gt;
# If you are creating a Linux virtual machine, select one of your available keypairs in the Authentication menu. This will inject your public key into the Linux VM during creation. If you are creating a non-Linux VM, simply select &#039;No SSH Key&#039;.&lt;br /&gt;
##  If there are no keypairs available to choose from, ensure your keypair was created in the same region as the VM you are trying to create.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=198</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=198"/>
		<updated>2024-10-07T20:48:21Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# A list of images will be available for you to select from in the &#039;Images&#039; menu. Select one, or if you&#039;re wanting to create and select a custom image, please review our [[Images]] article.&lt;br /&gt;
# Performance tiers and hardware specifications are available to choose from in the &#039;Hardware&#039; menu. Select the one that corresponds to what you&#039;d like for your virtual machine. If you&#039;re unsure about the different performance tiers, please review our [[Compute Tiers]] article.&lt;br /&gt;
# A system disk/root volume will automatically be populated in the &#039;Volumes&#039; menu. You can select a performance tier from the &#039;Type&#039; menu&#039;, and input whatever size you&#039;d like in the &#039;Size&#039; field. For more information about disk performance tiers, please review our [[Storage Tiers]] article. You can also add additional volumes here, or you can opt to add them at any later time.&lt;br /&gt;
# In the Network menu, select the &#039;Private Network&#039; option.&lt;br /&gt;
## A &#039;Private Network&#039; menu will appear. Choose from your available private networks. If there are no networks available to choose from, ensure you are creating your virtual machine in the correct region. You can also select &#039;Create Network&#039; to create a virtual private network from here.&lt;br /&gt;
# If you are creating a Linux virtual machine, select one of your available keypairs in the Authentication menu. This will inject your public key into the Linux VM during creation. If you are creating a non-Linux VM, simply select &#039;No SSH Key&#039;.&lt;br /&gt;
##  If there are no keypairs available to choose from, ensure your keypair was created in the same region as the VM you are trying to create.&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=197</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=197"/>
		<updated>2024-10-07T20:45:38Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# A list of images will be available for you to select from in the &#039;Images&#039; menu. Select one, or if you&#039;re wanting to create and select a custom image, please review our [[Images]] article.&lt;br /&gt;
# Performance tiers and hardware specifications are available to choose from in the &#039;Hardware&#039; menu. Select the one that corresponds to what you&#039;d like for your virtual machine. If you&#039;re unsure about the different performance tiers, please review our [[Compute Tiers]] article.&lt;br /&gt;
# A system disk/root volume will automatically be populated in the &#039;Volumes&#039; menu. You can select a performance tier from the &#039;Type&#039; menu&#039;, and input whatever size you&#039;d like in the &#039;Size&#039; field. For more information about disk performance tiers, please review our [[Storage Tiers]] article. You can also add additional volumes here, or you can opt to add them at any later time.&lt;br /&gt;
# In the Network menu, select the &#039;Private Network&#039; option.&lt;br /&gt;
## A &#039;Private Network&#039; menu will appear. Choose from your available private networks. If there are no networks available to choose from, ensure you are creating your virtual machine in the correct region. You can also select &#039;Create Network&#039; to create a virtual private network from here.&lt;br /&gt;
#&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=196</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.datatenant.com/mediawiki/index.php?title=Main_Page&amp;diff=196"/>
		<updated>2024-10-07T20:38:27Z</updated>

		<summary type="html">&lt;p&gt;Dtadmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;DataTenant Knowledgebase&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This repository of information should help you with any technical issues you have when using the DataTenant Cloud. Please check out our &#039;Getting Started&#039; section below to find the most commonly read articles.&lt;br /&gt;
&lt;br /&gt;
== Common Topics ==&lt;br /&gt;
Below are some shortcuts to some of the topics that are commonly inquired about.&lt;br /&gt;
&lt;br /&gt;
* [[Create a keypair]]&lt;br /&gt;
* [[Create or edit a security group]]&lt;br /&gt;
* [[Create a volume]]&lt;br /&gt;
* [[Create a network port]] (optional)&lt;br /&gt;
&lt;br /&gt;
If you&#039;re just looking to get started, please watch this Getting Started tutorial video. Or, you can read through the steps listed below.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Igo7nyhchQI}}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Sign in to DataTenant PubCloud&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Navigate to [https://pubcloud.datatenant.com DataTenant PubCloud] and login. You can select &#039;Register&#039; to create an account, which will prompt you to use an authenticator app like Microsoft Authenticator or FreeOTP to register an OTP code for 2FA purposes. Or, you simply login using your personal Google, Microsoft, or GitHub account.&lt;br /&gt;
&lt;br /&gt;
[[File:SignIn.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A project is a logical assortment of virtual machines, virtual networks, virtual volumes, SSH keypairs, security groups, object storage containers, and more. Each project you create will exist simultaneously in all compute regions. Once you&#039;ve created your project, it will need to be activated before you can create virtual resources.&lt;br /&gt;
&lt;br /&gt;
[[File:CreateProject.png|border|600px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;NOTE: If you are a business customer, and would like a free trial, please contact trials@datatenant.com&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In order to activate an account, you must deposit at least twenty dollars, which will become available as a credit that you can apply to any future balances. This can be done via several payment methods, including: credit/debit card, Amazon Pay (available through Stripe), CashApp (available through Stripe), and PayPal. Once your payment is completed, you will see your balance updated to reflect your deposit, and your project will become active.&lt;br /&gt;
&lt;br /&gt;
[[File:AddFunds.png|border|400px]]&lt;br /&gt;
&lt;br /&gt;
To learn more about billing and payments, please review our [[Billing]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Network&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before creating a virtual machine, you&#039;ll want to create at least one private virtual network. &lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Networking&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network1.png|border|800px]]&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual network in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
# Toggle the option for &#039;Subnet&#039; to &#039;On&#039;.&lt;br /&gt;
# Toggle the option for &#039;DHCP&#039; to &#039;On&#039;.&lt;br /&gt;
# Define your subnet in the CIDR field. This can be any private IP range, like &#039;&#039;192.168.0.0/24&#039;&#039; or &#039;&#039;10.0.1.0/24&#039;&#039;.&lt;br /&gt;
# Specify what DNS servers you&#039;d like to be presented to devices that receive DHCP addresses from this network. &lt;br /&gt;
# By default, your private network will use the first address in the subnet as the default gateway. If you&#039;d like to specify a custom gateway, you can toggle the &#039;Custom Gateway IP&#039; option and specify whichever address you&#039;d like. Likewise, you can narrow the DHCP allocation range or specify additional static routes on this screen.&lt;br /&gt;
# Once you&#039;ve finished, add a name for this private network and select &#039;Create Network&#039;.&lt;br /&gt;
#*[[File:Network2.png|border|800px]]&lt;br /&gt;
&lt;br /&gt;
In order to link your private virtual network to the internet, please review our [[Networking]] article.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Keypair (Linux Only)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you are going to create new Linux virtual machines, you&#039;ll want to create a keypair so you can securely access your virtual machines after their creation. &lt;br /&gt;
# To do this, navigate to &#039;Access&#039; and select &#039;Generate SSH Key&#039;.&lt;br /&gt;
#*[[File:SSH1.png|border|600px]]&lt;br /&gt;
# Select which region you&#039;d like the SSH keypair to be used in. For more information about regions, please review our [[Regions]] article. Give your Key Pair a name and select &#039;Generate&#039;.&lt;br /&gt;
#*[[File:SSH2.png|border|600px]]&lt;br /&gt;
# A window will appear asking you to save your private key file. Save it somewhere secure, as DataTenant does not have a way to regenerate or access your private key!&lt;br /&gt;
&lt;br /&gt;
Once completed, your public key will be saved and available to inject into your Linux virtual machines during creation. You can also create/import your own keypairs from this screen as well. Please review our [[Keypairs]] article to learn more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Create a Virtual Machine&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Now that you&#039;ve created a private network and a keypair (if you&#039;re intending to deploy Linux VMs), you&#039;re ready to create your first virtual machine.&lt;br /&gt;
&lt;br /&gt;
# On the right hand panel, under &#039;Cloud&#039;, select &#039;Server&#039;.&lt;br /&gt;
# The top right hand corner, select &#039;Create a Cloud Server&#039;.&lt;br /&gt;
# Choose which region you&#039;d like to create your virtual machine in. For more information about regions, please review our [[Regions]] article.&lt;br /&gt;
#&lt;/div&gt;</summary>
		<author><name>Dtadmin</name></author>
	</entry>
</feed>