-
Notifications
You must be signed in to change notification settings - Fork 7
Installation: Prerequisites
acozine edited this page Feb 27, 2014
·
19 revisions
A Virtual Server (VM) or Machine with at least:
- 64-bit architecture
- 15G of memory
- 10G of disk space on the root drive
- 30-300G of disk space on a drive mounted at /opt, depending on the files you plan to ingest - low end for images/text, high end for audio/video
- CentOS, Version 6.5 minimal install from any mirror CentOS-6.5-x86_64-minimal.iso OR Ubuntu, Version 12.04 Its (Precise Pangolin)ubuntu-12.04.3-server-amd64.iso.
- Use bash as your shell.
- Make sure your user has full sudo privileges (with or without password).
- Check to be sure that your environment contains a $USER variable.
echo $USER
should return your current user name. - Set a $HYDRA_NAME variable to be the name of this hydra head, HydraDAM.
echo "HYDRA_NAME=hydradam" | sudo tee -a /etc/environment
and load it into your shell environment
source /etc/environment
- Set the rails environment ($RAILS_ENV) to production
echo "RAILS_ENV=production" | sudo tee -a /etc/environment
and load that into your shell environment
source /etc/environment
- Create the /opt/install directory
sudo chown $USER:$USER /opt
mkdir -p /opt/install
echo $USER
should return your current user name
echo $HYDRA_NAME
should return "hydradam"
echo $RAILS_ENV
should return "production"
Proceed to Install Dependencies or return to the Overview page.