Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


System Requirements

Rogō runs on a standard LAMP stack:

...

From 6.3 on intall and update rogo will attempt to download the latest language packs available. The university of nottingham hosts a rogo site to download these from. If you prefer this setting can be changed to a site of your choosing.

Hardware Recommendations

Running on-line summative assessments requires a stable hardware platform with enough resources to handle the current student numbers and predicted growth in numbers. Rogō is a web application based around the LAMP stack and many of the standard optimisation techniques are applicable. However, on-line summative assessments have a different load profile to normal web traffic caused by the start of the exam. This high load over a short time period and the importance of the consequence of hardware failure must be taken into account.

Below are some sample/example based systems.

Small-Scale/Trial

CPU1x Quadcore
RAM4Gb
Hard Disk8Gb (RAID recommended for reliability NOT 0,2,3,4, for this size of space RAID 1 is adequate)

Large-Scale/Summative

CPU2x Quadcore
RAM8Gb
Hard Disk20Gb (RAID recommended for reliability NOT 0,2,3,4, for this size of space RAID 1 is adequate)

Example University of Nottingham platform

CPU4x Quadcore AMD Opteron(tm) Processor 8356 2300MHz
RAM16Gb
Hard Disk4 x 250Gb (RAID 5)
PSU4x redundant
Network2x Gbit

Considerations

  • Redundancy of Hardware This includes multiple PSUs (This allows either one source of power to fail or a failure of a PSU) and multiple networks (This allows either network hardware failure/routing issues or can increase the server bandwidth) along with Redundant storage solutions (allowing a disk failure to not interrupt the service and often provide higher performance than a single disk).
  • Availability - the design of supporting architecture should mirror the risk associated with failure. For high-stakes summative exams this normally requires a higher level of risk mitigation than simple formative self-assessments, for example. There are two main models of availability possible: 
    1. Automatic high-availability - virtual machines or load balancers are used to seamlessly flow requests between multiple servers in case of failure. In main cases the aim is that end users will not even notice that traffic has been routed to a different server. This will also require HA or cluster mysql setup. 
    2. Manual fall-over - two machines of identical specification can be used in a 'live' and 'backup' configuration. Usually the database would be configured as 'master' on the live server and 'slave' on the backup to keep records synchronised in real-time. Files (e.g. images) can be copied between servers using cron jobs set to run each day. In the event of a failure in the live the master/slave database connection would be broken by the system administrator and students told to re-start the exam on the backup server. Worst case scenario would be that one screen of results could be lost. This is the simplest method and has been implemented at Nottingham for many years without actually needing to being used.
  • Load - web-servers can handle thousands of users spread out over a period of time, but with summative exams high loads are imposed at the start of the exam and also we have seen at the end when students are quickly navigating between screens checking answers.
  • Bandwidth - the bandwidth required will depend on the number of simultaneous students in an exam multiplied by the size of the data they are accessing. For example, 200 students viewing a page with a 5Mb PDF file will generate 1Gb of network traffic. If this is going into one computer lab then if might be necessary to investigate the speed rating of the switches and other gear which serves that lab. A way to partly mitigate against large spikes is to include larger files within the middle of an exam so that not all the students will be requesting the file at the same time as they work through the exam at their own rates.
  • Storage - the Rogō application has quite modest storage needs, the main requirement will be the amount of media uploaded with each question. Images are usually not too large but attached PDF files, audio and video formats can take up quite a bit of space.

Platform Configuration
Anchor
config
config

Rogō should run on any LAMP stack without modification however there are some configuration task which need to be undertaken to ensure smooth operation under load.

...

Expand
titlePHP Settings

Below are some of the settings which may need to be altered from their default values:

Code Block
languagebash
max_execution_time = 120
memory_limit = 512M
post_max_size = 20M
upload_max_filesize = 20M
default_charset = "utf-8"
mbstring.internal_encoding = UTF-8
max_input_vars = 3000

E-mail configuration

Rogō uses the built in PHP mail functions to send e-mail, therefor you will need to configure it correctly for your environment.

Non English Language installation.

Users wishing to install in one of the supported languages other than English should download and install the language pack http://rogo-oss.nottingham.ac.uk/langpacks/ before proceeding with the installation.

Info

Work is being done to make this automated in the future.

Installation
Anchor
install
install

Extract Rogō into the web root and visit 'https://[YOUR_HOST_NAME]/install/index.php'. This will check your installation and create the appropriate databases and users.

...

Info
titleInstalling NPM

npm comes bundled in nodejs you can download from https://nodejs.org/en/download/ or search for npm/nodejs in your package manager.

Rogō Configuration

Rogō main configuration file is in /config/config.inc.php – This holds system wide setting for your installation.

Known Issues

  • Rogō uses a large number of prepared SQL statements, MySQL before version 5.1 does not cache prepared statements. Using MySQL version greater than 5.1 is highly recommended for large cohorts.

...