1. Install Software From RPM¶
We will use Software Collections to satisfy majority of the following software requirements:
- Apache HTTP Server 2.4
- Ruby 2.4 with rake, bundler, and development libraries
- Node.js 6
Note
This tutorial is run from the perspective of an account that has sudo access but is not root.
Enable the EPEL and Software Collections repositories:
- CentOS 6/7
sudo yum install centos-release-scl
- RHEL 6
sudo subscription-manager repos --enable=rhel-server-rhscl-6-rpms # Repository 'rhel-server-rhscl-6-rpms' is enabled for this system.
- RHEL 7
sudo subscription-manager repos --enable=rhel-server-rhscl-7-rpms # Repository 'rhel-server-rhscl-7-rpms' is enabled for this system.
Warning
For RedHat you may also need to enable the Optional channel and attach a subscription providing access to RHSCL to be able to use this repository.
Add Open OnDemand’s repository hosted by the Ohio Supercomputer Center:
sudo yum install https://yum.osc.edu/ondemand/1.6/ondemand-release-web-1.6-4.noarch.rpm
Install OnDemand and all of its dependencies:
sudo yum install ondemand
Install OnDemand SELinux support if you have SELinux enabled. For details see SELinux
sudo yum install ondemand-selinux
Note
For some older systems, user ids (UID) may start at 500
and not the
expected 1000
. If this true for your system, you will need to modify the
/etc/ood/config/nginx_stage.yml
configuration file to allow these
users access to OnDemand:
# /etc/ood/config/nginx_stage.yml
---
# ...
# Minimum user id required to generate per-user NGINX server as the requested
# user (default: 1000)
#
min_uid: 500
# ...