title | category | redirect_from | |
---|---|---|---|
VM Install using Vagrant |
Developer > Getting Started |
|
The instructions below will setup an instance of Submitty on your own hardware that will have several courses, many sample assignments, and a hundred students with assignment submissions so you can explore the features of Submitty as it would appear "mid-semester". Your host computer can run any modern operating system (Windows, Mac, or Unix/Linux). The installation process will create a new Virtual Machine (VM) on your computer and the VM will use the Ubuntu GNU/Linux operating system.
Note: We only officially support and test development using VirtualBox. The instructions below are for VirtualBox. While alternatively using VMWare should work, we have not tested this, and do not provide these instructions.
IMPORTANT NOTE: If you are using an Apple Mac computer with Apple Silicon (e.g., M1 or M2), first released in late 2020, you will follow the Vagrant QEMU instructions. If you using an Intel-based Mac, you will follow the instructions below.
-
To develop with a Virtual Machine (VM), your computer should have at least 8GB of RAM and a 64-bit host OS. AMD-V or Intel VT-x are also required (most computers have these). Submitty is RAM and I/O intensive, so more RAM and a fast disk are better.
-
Make sure you have at least 65GB of hard disk available for installation. We do not recommend installing the Submitty Developer VM on DropBox, OneDrive, GoogleDrive, or other cloud storage.
-
Some developers have had problems running both VirtualBox and VMWare on the same computer. If you have problems, we suggest shutting down the VMWare VMs, or stopping the VMWare services, or uninstalling VMWare.
-
If you're running Windows, it is recommended to disable Hyper-V. Leaving it enabled will force VirtualBox to use the Hyper-V backend, which will be slower and can cause instability in the VM.
Note: This may stop programs like Docker Desktop and WSL 2 from working. If these programs are essential to your workflow, consider looking up how to add a separate boot entry with "hypervisorlaunchtype" set to "off" for use with VirtualBox.
Note: Installing WSL2 may also reconfigure your OS to use Hyper-V or Windows hypervisor platform and prevent VirtualBox from working correctly. It is recommended to not install or use WSL2 alongside Virtualbox for now.
-
The complete installation process could take an hour or more. Make sure your internet connection is strong and consistent. You'll probably want to plug in your laptop power cord. Check your computer settings and make sure the machine does not hibernate or go to sleep during installation.
-
Enable Virtualization
MacOS
- Virtualization is generally enabled by default.
Windows 10
-
Open the Settings app by searching for it in the windows bar or clicking it in the Windows menu.
-
Navigate to Update and Security, then select Recovery from the side menu.
-
Under Advanced Startup, click Restart Now.
-
Once your PC has rebooted, click the Troubleshoot option.
-
Click Advanced Options.
-
Click UEFI Firmware Settings and restart as suggested.
-
Enter your BIOS (generally by pressing Del, F12, or other keys while booting). If you are not able to find the key combo needed to enter your BIOS, refer to this guide.
-
Locate Virtualization, and enable it. (Note: If you cannot find the option to enable virtualization, search Google for a tutorial on enabling it with your motherboard.)
-
Reboot your computer.
Ubuntu
-
Enter your BIOS (generally by pressing Del, F12, or other keys while booting).
-
Navigate the BIOS Settings.
-
Locate Virtualization and enable it.
-
Be sure to choose Hardware Virtualization in the System -> Acceleration settings of the virtual machine you are using.
NOTE If using secure boot, vagrant may fail to work with VirtualBox. You will then either need to disable secure boot from the boot menu/BIOS or follow these steps to self-sign the necessary packages to run vagrant and VirtualBox.
-
Download and install the latest version of Ruby.
-
Download and install the latest version of Git.
-
Download and install VirtualBox and Vagrant
NOTE Please download VirtualBox 6 instead of 7.
Below are quick steps to get everything installed and running.
Windows 10
- You can just go to the respective sites and download the necessary binaries.
MacOS
-
You can either go to respective sites and download the necessary binaries or install homebrew if you don't have it and then run:
brew install --cask virtualbox brew install --cask vagrant
Ubuntu/Debian
-
The Ubuntu repository does not contain the latest version of Vagrant or VirtualBox and using them may not work nor are they supported. We recommend that you either download the necessary binaries from their respective steps or follow the steps outlined below for each:
VirtualBox: https://www.virtualbox.org/wiki/Linux_Downloads
Vagrant: https://developer.hashicorp.com/vagrant/downloads (if that doesn't work, try: https://vagrant-deb.linestarve.com/)
Fedora/Red Hat Linux
- For Fedora, the latest version of VirtualBox is recommended to prevent errors. Download the RPM from the virtual box website. Make sure your version of
Fedora is up to date using
and inputting your password. Then install the Virtual Box rpm using:
sudo dnf update sudo dnf upgrade
Install Vagrant using:sudo dnf install VirtualBox-xxxxx.rpm
Now move on to step 5.sudo dnf install vagrant
NOTE
when running vagrant up, use vagrant up --provider=virtualbox
so it doesnt default to libvirt
Common errors when running vagrant up(Fedora/RHEL)
-
Missing virtnetworkd: Enable it in your terminal by running:
sudo systemctl start virtnetworkd
-
If your vagrant ever freezes kill it with ''' VBoxManage controlvm VM_NAME poweroff ''' or if that doesn't work, reboot the computer and then run
vagrant destroy
before re-runningvagrant up --provider=virtualbox
again. -
Clone the Submitty repository to a location on your computer (the "host").
git clone https://github.com/Submitty/Submitty.git
NOTE: If you are not currently part of the Submitty organization on Github, you may want to fork the repo and use the git url from your fork instead, especially if you are looking to contribute.
OPTIONAL: If you will be developing code in one of the companion Submitty repositories (e.g., AnalysisTools, Lichen, Localization, RainbowGrades, Tutorial), also clone those repositories to the same directory. For example:
home └── myusername └── Submitty └── GIT_CHECKOUT ├── AnalysisTools (optional) ├── Lichen (optional) ├── Localization (optional) ├── RainbowGrades (optional) ├── Submitty └── Tutorial (optional)
This host directory structure will be shared / synced between your host operating system and the Submitty virtual machine.
-
Navigate into the Submitty repository on your computer in a shell/terminal and type:
Windows should run CMD or powershell on administrator mode
vagrant up
If you are using VirtualBox as your provider, you will by default use a pre-packaged Submitty VM. This will have all of Submitty already setup. Vagrant will build your VM for you. This process will take 10 minutes to maybe half an hour depending on your internet connection speed. When this command finishes, your VM is ready to use.
If you wish to run
vagrant up
from scratch, on Linux or Mac type:BASE_BOX=1 vagrant up
or on Windows, type:
SET BASE_BOX=1 vagrant up
This process will take anywhere from 30 minutes to a few hours depending on your internet speed.
-
When the
vagrant up
command completes successfully, you will be able to access the Submitty website (instructions follow in the next section).The VM will continue to run jobs in the background and consume a nontrivial amount of CPU resources, while completing a backlog of autograding for a dozen or more sample submissions for each of the more than 100 users in the sample courses.
On MacOS and linux, if your development work will not require sample assignment submissions or autograding results, you may prepend
NO_SUBMISSIONS=1
to the previous command, which will skip the creation of these sample submissions and their autograding and decrease the time to complete installation.NO_SUBMISSIONS=1 vagrant up
On Windows
cmd
, you will have to first set the environment variableNO_SUBMISSIONS
to 1 which lasts for the session of that console, then call vagrant up.SET NO_SUBMISSIONS=1 vagrant up
On PowerShell, you will have to set the environment variable differently:
$Env:NO_SUBMISSIONS=1 vagrant up
If you want to unset the variable later in
cmd
, you can doSET NO_SUBMISSIONS=
Or in PowerShell,
Remove-Item Env:\NO_SUBMISSIONS
Similarly, you can check that the variable is set by doing
SET NO_SUBMISSIONS
Or in PowerShell,
$Env:NO_SUBMISSIONS
-
When the install has completed, you should see the message:
##################################################################### INSTALLATION SUCCESS! .GGQGGGSlu .GGGGGGGGGGGS :llUGGGGGGGGGGGGGGGG 'GGGGGGGGGGGGGGGGGGb . %GGGGGGGGGGGGGGG~ ..GSGGG GGGGGGGGGGGGGGSGGGGGGGGGG[ ;GGGGGGGGGGGGp\ \ \GGGGGGGGL !GGGGGGGGGGGGGGS\ \ \GGGGGG GGGGGGGGGGGGGGGGG\ \ \9GGGG %GGGGGGGGGGGGGGGS/ / /.GGG %GGGGGGGGGGGGGS/ / /GGG '%NNNNNNNNNNNNNNNNNN #####################################################################
NOTE: There are times when the install will pause for a brief period with the message
Done
. This does not mean the install has ended, and the install should continue after a bit of time.If you do not see this message due to an error or the installation has frozen, check out:
-
When the VM is "up", you can go visit the homework submission website.
-
From a web browser (Chrome, Firefox, IE, etc.) on your host computer, go to:
http://localhost:1511/index.php
(see the VM login & password info below)
-
You can test the submission, autograding, and viewing of the grades details by uploading sample submissions from the Submitty repository, located in one of these these directories:
For the "tutorial" course: https://github.com/Submitty/Tutorial/tree/main/examples
For the "sample" course: https://github.com/Submitty/Submitty/tree/master/more_autograding_examples
-
-
When the VM is "up", you can connect from your host computer to the virtual machine via ssh. Windows users will need to install SSH software (e.g., WSL, or Cygwin, or Putty ). From a terminal in the repository directory type:
vagrant ssh
You will connect to the VM as the
root
user.If
vagrant ssh
asks for a password for the [email protected] user and "vagrant" without the quotation marks does not work, look at the vagrant ssh config file and make note of the hostname and port.vagrant ssh-config
Then directly ssh into the VM by
ssh vagrant@hostname -p port
If it asks for password, it should be "vagrant" and then
sudo su
to login as the root user. You should then see you are logged in as root@vagrant.
-
The following users exist on the VM:
user password role superuser superuser Superuser vagrant vagrant OS user root vagrant OS user submitty_cgi submitty_cgi Submitty process submitty_php submitty_php Submitty process submitty_daemon submitty_daemon Submitty process postgres postgres database process instructor instructor Instructor submitty user ta ta Full access grader submitty user grader grader Limited access grader submitty user student student Student submitty user -
The VM has the following four courses by default and they are all part of the current semester:
- tutorial
- sample
- development
- blank
Note: The current semester is calculated by either using an
s
if in the month is < 7 else usef
and then take the last two digits of the current year. So April 2017 would bes17
while September 2017 would bef17
.
-
When you take a break from Submitty development work, you can suspend the Submitty VM to save resources (CPU and battery) on your host machine.
vagrant suspend
Alternatively, you can halt the virtual machine. This is a more complete shutdown and will take slightly longer to restart when you resume development work.
vagrant halt
-
To resume work on a VM that is suspended or halted:
vagrant up
NOTE: when resuming work, you may see this warning several times,
default: Warning: Remote connection disconnect. Retrying.. .
These warnings are not harmful and can be ignored. -
If you just want to restart the VM (same as
halt
thenup
), type:vagrant reload
-
Read the Development Instructions page for instructions on updating an existing installation with recent code changes.
-
To completely delete the virtual machine, type:
vagrant destroy
And if desired (to start over from scratch with a fresh VM):
vagrant up
-
Make sure that the VM is stopped.
vagrant halt
-
In the
Vagrantfile
, add a new port underconfig.vm.define
for the primary box below the other forwarded ports (site, websockets, database).ubuntu.vm.network 'forwarded_port', guest: 22, host: <port>, id: "ssh", host_ip: "0.0.0.0"
Replace
<port>
with the port you want to expose externally on the machine that is running the VM, and expose the specified port on the machine if necessary. -
Start the vagrant machine with
vagrant up
. -
Retrieve the private key for the vagrant machine, located at
<SUBMITTY GIT REPO>/.vagrant/machines/<VM>/<VM BACKEND>/private_key
.At the time of writing,
<VM>
isubuntu-22.04
, and<VM BACKEND>
isvirtualbox
. -
Use SSH to connect from the remote device to the machine that is running the VM, and use SSH port forwarding (local forwarding) to forward the necessary ports.
The username to sign in is
root
and the authentication method is with private key (using the private key specified in part 4). If you encounter authentication issues, try addingvagrant
as the password in addition to the private key.For most things, you will only need to forward the
site
port and thewebsockets
port (1511, 8443).The configuration to set up the connection will differ based on your client; below is an example for if you're using an SSH binary to connect, assuming that the SSH configuration file has the username, private key (identity file), IP address (host name), and port stored.
ssh -L 1511:localhost:1511 -L 8443:localhost:8443 $SUBMITTY_HOST
where
$SUBMITTY_HOST
is a reference to theHost
from the SSH config file.NOTE Especially for mobile operating systems, make sure that your SSH client supports SSH port forwarding. On iOS, you will also have to enable location tracking for the client to keep the connection alive in the background.
This has been tested with Blink for iOS and Termius for iOS (also available on Android, untested).
-
Navigate to
localhost:1511
on the remote device.
For developers who need to upgrade to HTTP/2 in their development environments, please follow the step below:
-
Run
bash /usr/local/submitty/GIT_CHECKOUT/Submitty/.setup/dev-upgrade-h2.sh up
.After a successful execution, please use
https://
instead ofhttp://
. -
To downgrade to HTTP/1.1, run
bash /usr/local/submitty/GIT_CHECKOUT/Submitty/.setup/dev-upgrade-h2.sh down
.
The script should automatically handle the upgrading and issuing a self-signed certificate. If your browser complains about the security, please head to WebSocket.