Skip to content

Instantly share code, notes, and snippets.

@ohadlevy
Created January 30, 2012 20:33
Show Gist options
  • Save ohadlevy/1706509 to your computer and use it in GitHub Desktop.
Save ohadlevy/1706509 to your computer and use it in GitHub Desktop.
# Installs basic requirements such as postgres database server
yum install -y wget postgresql-server postgresql-contrib pgadmin3 java-1.6.0-openjdk-devel
# add ovirt public repo
wget http://www.ovirt.org/releases/nightly/fedora/16/ovirt-engine.repo -P /etc/yum.repos.d/
yum install -y ovirt-engine ovirt-engine-setup
# now either simply enter engine-setup, or something like the following:
engine-setup  --http-port=8080 --https-port=8443 --host-fqdn=`hostname -f` --auth-pass=123123 --db-pass=123123 --default-dc-type=NFS --config-nfs=yes --override-iptables=yes --org-name=test-install --nfs-mp=/mnt/nfs --iso-domain-name=`hostname -s`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment