Skip to content

GeniusVentures/TestVMs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Test Virtural Machines.

Install vagrant instructions here:

Vagrant Installation

Install VirtualBox (recommended VM Manager)

Virtual Box Download

This currently has two Ubunutu instances that is launches. You can modify 'Vagrantfile' under Ubuntu64 directory to launch more than one instance.

# Create 1 nodes
  (1..1).each do |i|
  
# Create 10 nodes
  (1..10).each do |i|
cd Ubuntu64
vagrant up

Wait for the instance(s) to launch.

vagrant ssh node-1
vagrant ssh node-2

will get you into the vagrant Linux Instance.

If using Windows and git-bash, you will have to set up a config in your .ssh/config as if you hit control-c in git-bashe.exe it aborts the vagrant ssh command.

.ssh/config

host vlinux
   Hostname 127.0.0.1
   user vagrant
   port 2222
   IdentityFile C:/Development/GeniusVentures/GeniusTokens/TestVMs/Ubuntu64/.vagrant/machines/node-1/virtualbox/private_key

now you instead, do the following on git-bash in Windows.

ssh vlinux

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published