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.


Pre-Installation Checklist

  1. 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.

  2. 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.

  3. 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.

  4. 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.

  5. 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.


Submitty Developer VM Installation

  1. ENABLE VIRTUALIZATION
    Follow the instructions below specific to your host operating system:

    • MacOS
      Virtualization is generally enabled by default.

    • Windows 10
      1. Open the Settings app by searching for it in the windows bar or clicking it in the Windows menu.
      2. Navigate to Update and Security, then select Recovery from the side menu.
      3. Under Advanced Startup, click Restart Now.
      4. Once your PC has rebooted, click the Troubleshoot option.
      5. Click Advanced Options.
      6. Click UEFI Firmware Settings and restart as suggested.
      7. 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.
      8. Locate Virtualization, and enable it. (Note: Some motherboards may call it SVM, AMD-V, VT-x/Vanderpool. If you cannot find the option to enable virtualization, search Google for a tutorial on enabling it with your motherboard.)
      9. Reboot your computer.
    • Windows 11
      1. Open Change advanced start-up options by searching for it in the search bar.
      2. Under Advanced Startup, click Restart Now.
      3. Once your PC has rebooted, click the Troubleshoot option.
      4. Click Advanced Options.
      5. Click UEFI Firmware Settings and restart as suggested.
      6. 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.)
      7. Reboot your computer.
    • Ubuntu
      1. Enter your BIOS (generally by pressing Del, F12, or other keys while booting).
      2. Navigate the BIOS Settings.
      3. Locate Virtualization and enable it. (Some motherboards may call it SVM, AMD-V, VT-x/Vanderpool)
      4. Be sure to choose Hardware Virtualization in the System -> Acceleration settings of the virtual machine you are using.
      5. 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.
  2. DOWNLOAD AND INSTALL THE LATEST DEPENDENCIES

    • You will need:
      Follow the instructions below specific to your host operating system

    • 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
       vagrant plugin install vagrant-timezone
      
    • Windows
      You can just go to the respective sites and download the necessary binaries.

    • Ubuntu/Debian

    • Fedora/Red Hat Linux

      • For Fedora, the latest version of VirtualBox is recommended to prevent errors. Download the RPM from the VirtualBox website. Make sure your version of Fedora is up to date using
        sudo dnf update
        sudo dnf upgrade
        

        and inputting your password. Then install the Virtual Box rpm using:

        sudo dnf install VirtualBox-xxxxx.rpm
        

        Install Vagrant using:

        sudo dnf install vagrant
        
      • Note: When running vagrant up, use vagrant up --provider=virtualbox so it doesn’t default to libvirt

      • Common errors when running vagrant up (Fedora/RHEL)

        1. Missing virtnetworkd:
          Enable it in your terminal by running:
          sudo systemctl start virtnetworkd
          
        2. 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-running vagrant up --provider=virtualbox again.

  3. CLONE THE SUBMITTY REPOSITORY

    • Clone it 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.

  4. RUN VAGRANT

    If you have an AMD processor you can choose to download a pre-made VM that is created weekly OR you can create the VM from scratch (which will take substantially more time). If you have an ARM chip (e.g., the Apple Silicon Mac M1/M2/M3), you must create the VM from scratch.

    • Navigate into the Submitty repository on your computer in a shell/terminal. On Windows, run CMD or PowerShell on administrator mode.

    • Build pre-packaged VM

    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.

     vagrant up
    

    If you wish to use a specific version of the pre-packaged Submitty VM, on Linux or Mac type:

     PREBUILT_VERSION={version} vagrant up
    

    or on Windows, type:

     SET PREBUILT_VERSION={version}
     vagrant up
    

    The version must be only the numbers, not including the v in front, for example 24.05.00.2405260215 not v24.05.00.2405260215

    This process will take 10 minutes to maybe half an hour depending on your internet connection speed.

    • Build from scratch

      If you wish to run vagrant up from scratch, on Linux or Mac type:

      FROM_SCRATCH=1 vagrant up
      

      Or on Windows, type:

      SET FROM_SCRATCH=1
      vagrant up
      

      This process will take anywhere from 30 minutes to a few hours depending on your internet speed.

      ADDITIONAL NOTE: 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.

    • Build without sample submissions

      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.

      • On Mac or Linux:
        NO_SUBMISSIONS=1 vagrant up
        
      • Or on Windows using cmd:
        SET NO_SUBMISSIONS=1
        vagrant up
        

        Or on Windows using 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 do:

        SET 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
        
  5. AND YOU ARE DONE!

    When the installation 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:
    Installation Troubleshooting


Using your Submitty Developer VM

  1. 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 grade details by uploading sample submissions from the Submitty repository, located in one of these directories:

  2. 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 root@127.0.0.1 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.

  3. 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

    Note that there are many more student and grader users on the VM; you may log in as any of them using their User ID as the username and password. The easiest way to see the list of users is to log in as an instructor, access a course, and click Manage Students or Manage Graders.

  4. 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 use f and then take the last two digits of the current year. So April 2017 would be s17 while September 2017 would be f17.*


Starting and Stopping the Submitty VM

  1. 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
    
  2. 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.

  3. If you just want to restart the VM (same as halt then up), type:

    vagrant reload
    
  4. Read the Development Instructions page for instructions on updating an existing installation with recent code changes.

  5. To completely delete the virtual machine, type:

    vagrant destroy
    

    And if desired (to start over from scratch with a fresh VM):

    vagrant up
    

Testing with a remote device

  1. Make sure that the VM is stopped.

     vagrant halt
    
  2. In the Vagrantfile, add a new port under config.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.

  3. Start the vagrant machine with vagrant up.

  4. 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> is ubuntu-22.04, and <VM BACKEND> is virtualbox.

  5. 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 adding vagrant as the password in addition to the private key.

    For most things, you will only need to forward the site port and the websockets 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 the Host 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).

  6. Navigate to localhost:1511 on the remote device.


Developing in HTTPS

For developers who need to upgrade to HTTP/2 in their development environments, please follow the step below:

The script should automatically handle the upgrading and issuing a self-signed certificate. If your browser complains about the security, please head to WebSocket.