Created
January 30, 2012 20:33
-
-
Save ohadlevy/1706509 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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