NOTICE: FULL O2 Cluster Outage, January 3 - January 10th

O2 will be completely offline for a planned HMS IT data center relocation from Friday, Jan 3, 6:00 PM, through Friday, Jan 10

  • on Jan 3 (5:30-6:00 PM): O2 login access will be turned off.
  • on Jan 3 (6:00 PM): O2 systems will start being powered off.

This project will relocate existing services, consolidate servers, reduce power consumption, and decommission outdated hardware to improve efficiency, enhance resiliency, and lower costs.

Specifically:

  • The O2 Cluster will be completely offline, including O2 Portal.
  • All data on O2 will be inaccessible.
  • Any jobs still pending when the outage begins will need to be resubmitted after O2 is back online.
  • Websites on O2 will be completely offline, including all web content.

More details at: https://harvardmed.atlassian.net/l/cp/1BVpyGqm & https://it.hms.harvard.edu/news/upcoming-data-center-relocation

O2portal - FAQ

What's the Restart Web Server option used for?

Located within the Help menu, the Restart Web Server option can be used to simply reload your own session. This option does not take any effect system-wide.

How to install kernels on Jupyter Notebooks?

For more information, please visit the following link - Using other programming languages / Jupyter kernels.

Do I need to be on the VPN?

VPN is not required to use the O2 Portal. In fact, we recommend not to use it whenever is possible.

Can I use any web browser with the O2 Portal?

Some features of the O2 Portal do not work properly with the Safari browser. We recommend using Chrome or Firefox.

Why I am seeing “R is taking longer to start than usual” after launching RStudio?

Delete RStudio’s cache. You will need to open the Terminal (e.g., Clusters → >_O2 Cluster Terminal) and type rm -r ~/.local/share/rstudio.

How to change the working directory to scratch and update the Files tab on the RStudio IDE?

setwd("<scratch_path>") rstudioapi::filesPaneNavigate(getwd())

What is the maximum file upload limit in the O2 Portal GUI?

The max size limit is 10GB for each file uploaded. If you need to upload a larger file, please read this page.

How can I resolve the Internal Server Error (see picture below) preventing me from using any of the O2 Portal app?

Click on the Restart Web Server option.

How to compile R package when using an RStudio project?

The PATH variable is affected by RStudio projects; '/usr/bin' is prepended to the beginning of the variable. A simple solution is to run the following R command:

if (unlist(strsplit(Sys.getenv('PATH'),":"))[1] == '/usr/bin') {Sys.setenv(PATH = sub('^[^:]+:', '', Sys.getenv('PATH')))}

which removes the prepended /usr/bin from the PATH variable.

How to view any error captured in the browser console?

On your current O2 Portal screen: right-click (or double-tap on Mac) → select 'Inspect' → click on “” (see image below) to view the list of errors related to the current URL.

chrome_console_err.png
Screenshot of the Chrome browser console. Example: it shows 1 error, 32 warnings, and 16 issues. The error, listed at the bottom, is related to a Zotero extension.